This commit is contained in:
2026-03-17 13:28:21 -05:00
parent 3db7c385bd
commit e78e3a980a
2 changed files with 33 additions and 2 deletions

View File

@@ -219,6 +219,37 @@ img, picture, video, canvas, svg{
}
}
/* Mission Image Responsive Styles */
.mission-responsive-img {
width: 100%;
height: auto;
max-width: 600px;
object-fit: cover;
border-radius: 8px;
}
.mission-circle-img {
width: 100%;
height: auto;
max-width: 200px;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 50%;
display: block;
margin: 0 auto;
}
/* Mobile optimization */
@media (max-width: 768px) {
.mission-responsive-img {
max-width: 100%;
}
.mission-circle-img {
max-width: 150px;
}
}
a{
text-decoration: none;
}