.intro {
    background-color: var(--black);
    color: var(--gray);
    background-image: url(../assets/abstract-bg.jpg);
    background-size: cover;
    background-blend-mode: overlay;
    background-position: bottom;
    text-align: center;
}

h1 {
    font-size: var(--h2Size);
    padding-bottom: 12.5px;
}

.authorDate {
    display: flex;
    justify-content: center;
    column-gap: 25px;
}

.authorIcon {
    background-color: var(--gray);
    color: var(--black);
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 25px;
}

.author {
    display: flex;
    align-items: center;
    column-gap: 7.5px;
}

.author p,
.date p {
    font-size: var(--smallSize);
}

.date {
    display: flex;
    align-items: center;
    column-gap: 7.5px;
}





@media screen and (max-width: 768px) {
    header {
        padding-bottom: 25px;
    }

    .intro {
        padding: 50px 25px 125px 25px;
    }
    .authorDate {
        padding-top: 50px;
    }
    .imgs {
        overflow-x: scroll;
        display: flex;
        column-gap: 12.5px;
        padding: 0 25px;
        transform: translateY(-100px);
    }
    .imgs .img img {
        transition: all .25s ease-in-out;
        height: 350px;
        aspect-ratio: 1/1;
        object-fit: cover;
    }
}

@media screen and (min-width: 768px) {
    header {
        padding-bottom: 50px;
    }

    .intro {
        padding: 100px 200px 200px 200px;
    }

    .authorDate {
        padding-top: 100px;
    }

    .imgs {
        width: 100%;
        display: flex;
        column-gap: 12.5px;
        transform: translateY(-150px);
        padding: 0 100px;
    }

    .imgs::-webkit-scrollbar {
        display: none;
    }

    .imgs .img {
        flex: 0 0 calc((100% - 50px) / 5);
        width: 100%;
    }

    .imgs .img img {
        width: 100%;
        aspect-ratio: 3/4;
        object-fit: cover;
    }

    .imgs .img:nth-child(2n) {
        transform: translateY(50px);
    }
}

@media screen and (min-width: 1728px) {
    .intro {
        padding: 100px calc((100% - 1728px) / 2) 200px calc((100% - 1728px) / 2);
    }

    .imgs {
        padding: 0 calc((100% - 1728px) / 2);
    }
}