/* --- HERO --- */
@media screen and (min-width: 0rem) {
    .section-hero {
        width: 100%;
        margin-top: 75px;
        position: relative;
    }

    .section-hero-content {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .section-hero-content .eyebrow-text {
        color: #C5C287;
    }

    .section-hero-content .eyebrow-text-image-left, .section-hero-content .eyebrow-text-image-right {
        fill: #C5C287;
    }

    .section-hero-content .title {
        color: white;
        max-width: 60rem;
    }


    .section-hero .hero-image-container {
        max-width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 400px;
        top: 0;
    }

    .section-hero .hero-image {
        min-width: 60rem;
        width: 100%;
        height: auto;
        position: relative;
        object-fit: cover;
        object-position: center center;
    }
}

/* --- BLOG --- */
@media screen and (min-width: 0rem) {
    .section-blog {
        display: flex;
        gap: 32px;
        padding-inline: 24px;
        margin-top: 60px;
        max-width: 34rem;
        margin-inline: auto;
    }

    .blog-list-ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .blog-list-li {
        background-color: #F6F6F6;
    }

    .blog-list-content-container {
        display: flex;
        flex-direction: column;
        padding-top: 32px;
        padding-inline: 16px;
    }

    .blog-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .blog-eyebrow-container {
        display: flex;
        flex-direction: row;
        margin-bottom: 16px;
        font-weight: 100;
        color: #403F3F;
        gap: 8px;
        align-items: center;
        font-size: 14px;
    }

    .blog-author-image {
        width: 35px;
        height: 35px;
        object-fit: cover;
        border-radius: 50%;
    }

    .blog-dot {
        height: 4px;
        width: 4px;
        background-color: #7a7979;
        border-radius: 50%;
        margin-inline: 4px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-list-li .button {
        align-self: flex-start;
        margin-bottom: 32px;
    }

    .pagination {
        margin-top: 60px;
        margin-inline: auto;
        display: flex;
        flex-direction: row;
        gap: 16px;
        width: fit-content;
        align-items: center;
    }

    .pagination button {
        background: transparent;
        padding: 8px;
        width: 100px;
        border: 1px solid;
        border-radius: 4px;
        cursor: pointer;
    }

    .pagination button:hover {
        color: #C5C287;
    }

    .blog-side-content {
        display: none;
        flex-direction: column;
        gap: 68px;
    }

    .featured-list-ul {
        list-style: none;
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .featured-list-link {
        display: flex;
        flex-direction: row;
        gap: 24px;
        align-items: center;
        text-decoration: none;
    }

    .featured-image {
        object-fit: cover;
        width: 80px;
        height: 80px;
        border-radius: 50%;
    }

    .featured-title {
        font-size: 16px;
        overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
        font-weight: 600;
        color: black;
    }

    .featured-date {
        font-size: 1rem;
        font-weight: 100;
        color: #403F3F;
        margin-top: 16px;
    }

    .blog-side-cta {
        display: flex;
        flex-direction: column;
    }

    .blog-side-cta .button {
        align-self: flex-start;
    }
}

@media screen and (min-width: 64rem) {
    .section-blog {
        max-width: 80rem;
    }

    .blog-list-container {
        width: 70%;
    }

    .blog-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .blog-title {
        font-size: 32px;
    }

    .pagination {
        margin-inline: 0px;
        width: fit-content;
    }

    .blog-side-content {
        display: flex;
        width: 30%;
    }
}

button:disabled:hover {
  background-color: inherit;
  color: #959595;
}

button:disabled {
    color: #959595;
    cursor: default;
}
