.image_gallery_content_1__container {
display: grid;
gap: 60px;
padding-top: 60px;
padding-bottom: 70px;
}
.image_gallery_content_1__section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
scroll-margin-top: 100px;
}
body:has(.header__contact) .image_gallery_content_1__section {
scroll-margin-top: 140px;
}
.image_gallery_content_1__gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
align-content: start;
}
.image_gallery_content_1__section--alt .image_gallery_content_1__gallery {
grid-column: 2;
}
.image_gallery_content_1__gallery--sticky {
position: sticky;
top: 100px;
align-self: start;
}
body:has(.header__contact) .image_gallery_content_1__gallery--sticky {
top: 140px;
}
.image_gallery_content_1__section__content--sticky {
position: sticky;
top: 100px;
align-self: start;
}
body:has(.header__contact) .image_gallery_content_1__section__content--sticky {
top: 140px;
}
.image_gallery_content_1__img img {
border-radius: 1px;
aspect-ratio: 148/108;
object-fit: cover;
border-radius: 8px;
box-shadow: var(--box-shadow-warm);
outline: 2px solid transparent;
outline-offset: -2px;
transition: outline-offset 125ms var(--cubic-bezier),
outline-color 125ms var(--cubic-bezier);
}
.image_gallery_content_1__img--first {
grid-column: span 3;
}
.image_gallery_content_1__img--first img {
aspect-ratio: 16/9;
}
.image_gallery_content_1__section__content {
margin-top: 20px;
}
.image_gallery_content_1__section--alt .image_gallery_content_1__section__content {
grid-row: 1;
}
.image_gallery_content_1__section__intro {
font-size: calc(14 / 16 * 1rem);
line-height: 20px;
color: var(--main);
text-transform: uppercase;
font-weight: 600;
}
.image_gallery_content_1__section__intro + .image_gallery_content_1__section__title {
margin-top: 8px;
}
.image_gallery_content_1__section__title + .prose {
margin-top: 8px;
}
.image_gallery_content_1__list {
margin-top: 12px;
}
.image_gallery_content_1__list li {
display: flex;
gap: 8px;
padding: 12px;
padding-bottom: 14px;
background-color: var(--neutral-100);
border-radius: 6px;
color: var(--neutral-600);
}
.image_gallery_content_1__list li + li {
margin-top: 8px;
}
.image_gallery_content_1__list svg {
flex-shrink: 0;
}
.image_gallery_content_1__btns {
margin-top: 16px;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
@media (hover: hover) {
.image_gallery_content_1__img a:hover img {
outline: 2px solid var(--neutral-200);
outline-offset: -4px;
}
}
@media(max-width: 1000px) {
.image_gallery_content_1__section {
grid-template-columns: 1fr;
}
.image_gallery_content_1__img--first {
grid-column: unset;
}
.image_gallery_content_1__img--first img {
aspect-ratio: 148 / 108;
}
.image_gallery_content_1__section__content {
margin-top: unset;
}
.image_gallery_content_1__section--alt .image_gallery_content_1__gallery {
grid-column: unset;
}
.image_gallery_content_1__gallery--sticky,
.image_gallery_content_1__section__content--sticky {
position: unset;
}
}
@media(max-width: 600px) {
.image_gallery_content_1__gallery {
grid-template-columns: repeat(2, 1fr);
}
}