@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Inter", sans-serif;
}
main{
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.msg-box{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 80px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
}
section.msg-box img{
    width: clamp(80px, 8vw + 20px, 250px);
    margin-top: 5px;
}


.msg-text{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
h2.title{
    font-size: clamp(1.8rem, 5vw + 0.5rem, 2.5rem);
    font-weight: normal;
    color: #353B47;
}
strong.author{
    font-size: clamp(0.8rem, 4vw + 0.5rem, 1.8rem);
    color: #353B47;
}
.photo-gallery {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
}

.photo-gallery__viewport {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.photo-gallery__slides {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.photo-gallery__slide {
    grid-area: 1 / 1;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    opacity: 0;
    transition: opacity var(--gallery-fade-ms, 900ms) ease-in-out;
    pointer-events: none;
}

.photo-gallery__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.photo-gallery__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

@media (max-width: 1024px) {
    main {
        height: auto;
        min-height: auto;
        background: #fff;
    }

    .gallery-container {
        position: relative;
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    section.msg-box {
        position: relative;
        top: auto;
        left: auto;
        background: transparent;
        z-index: auto;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        min-height: auto;
        padding: 3rem 2.5rem 2rem;
        gap: 1.25rem;
        width: 100%;
    }

    section.msg-box img {
        width: 5rem;
        margin-top: 0;
    }

    .msg-text {
        gap: 1.25rem;
    }

    h2.title {
        font-size: 1.75rem;
        line-height: 1.4;
        color: #353b47;
    }

    strong.author {
        font-size: 1.125rem;
        font-weight: 700;
    }

    .photo-gallery {
        position: relative;
        flex: 0 0 auto;
        height: auto;
        width: 100%;
    }

    .photo-gallery__viewport {
        height: auto;
    }

    .photo-gallery__slides {
        overflow: visible;
    }

    .photo-gallery__slide {
        height: auto;
    }

    .photo-gallery__slide img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: unset;
        object-position: unset;
    }
}

@media (max-width: 767px) {
    section.msg-box {
        padding: 2.5rem 1.5rem 2rem;
    }

    section.msg-box img {
        width: 4rem;
    }

    h2.title {
        font-size: 1.375rem;
    }

    strong.author {
        font-size: 1rem;
    }
}