/* ===== Blog Page ===== */
.blog-page {
    background: #fff;
}

.blog-container {
    width: min(100%, calc(100% - 44px));
    margin: 0 auto;
}

section.blog-hero {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

/* SECTION 1: HERO (700px) */
.blog-hero {
    height: auto;
	padding-top:150px;
	padding-bottom:50px;
    background: #fff;
}

.blog-hero__title {
    margin: 0 0 50px;
    font-size: 100px;
    width: 30%;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
}

.blog-hero__rule {
    height: 2px;
    background: #e8e8e8;
    width: 40%;
    margin: 0 0 10px;
}

/* remove default arrow */
.blog-filter__select {
    width: 120px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 40px 10px 0px;
    background: white;
    color: black;
    cursor: pointer;
}

/* RIGHT ARROW */
.dropdown-arrow {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    fill: black;
    pointer-events: none;
    transition: transform 0.35s ease;
    /* smooth animation */
}

/* rotate arrow when open */
.filter-select-wrap.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* dropdown options */
.blog-filter__select option {
    background: white;
    color: black;
}


/* SECTION 2: POSTS */
.blog-posts {
    background: #fff;
    padding: 0 0 70px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card (image + title only) */
.blog-card {
    background: transparent;
}

.blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card__media {
    aspect-ratio: 4 / 3;
    background: #f2f2f2;
    overflow: hidden;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #efefef, #fafafa);
}

.blog-card__title {
    font-family: 'Alfa Slab One', sans-serif;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    color: #000;
    opacity: 1;
}

.blog-card__link:hover .blog-card__title {
    opacity: 1;
}

/* MORE BLOGS button bottom-right */
.blog-more-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
    margin-right: 200px;
}

.blog-more {
    transition: all .3s;
    background: transparent;
    border: 0;
    padding: 0;
    padding-bottom: 10px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111;
    border-bottom: 2px solid #111;
    cursor: pointer;
}

.blog-more:hover {
    color: #ccc;
}

.blog-more:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 900px) {
    .blog-hero__title {
        font-size: 48px;
    }

    .blog-hero__rule {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .blog-hero {
        height: auto;
		padding-top: 30px;
        padding-bottom: 26px;
    }
    .drop-menu-bt {
    border-top: 2px solid #000000 !important;
    width: 100% !important;
}

    .blog-hero__title {
        font-size: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* .blog-hero__inner {
        padding-top: 110px !important;
        padding-left: 1px;
        width: 100%;
    } */

    .blog-more-wrap {
        display: flex;
        justify-content: flex-end;
        margin-top: 50px;
        margin-right: 0px;
    }

    .blog-card__title {
        font-family: 'Alfa Slab One', sans-serif;
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 500;
        color: #000;
        opacity: 1;
    }
}