.regular-card-container {
    width: 50%;
}

.regular-post-image {
    max-width: 147px;
    width: 100%;
    aspect-ratio: 147 / 107;
    height: auto;
}

.post-label {
    width: fit-content;
    padding: 5px 12px;
    border-radius: 32px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.blog-section {
    padding: 80px 0;
}

.card-regular-wrapper {
    padding: 20px 0;
    max-width: 518px;
}

.blog-posts-wrapper {
    gap: 60px;
}

.post-meta-author {
    width: min-content;
}

.wrapper-content-card {
    max-width: 100%;
}

.post-link-blog:hover {
    color: var(--bs-black);
}

.blog-posts-wrapper {
    padding-top: 32px;
}

.blog-upper-wrapper {
    padding-bottom: 32px;
}

.post-link-blog:hover {
    color: var(--bs-main-500);
}

.post-link-blog:visited {
    color: var(--bs-black);
}

.divider-blog {
    height: 1px;
    background-color: var(--bs-neutral);
    position: absolute;
    margin-left: -24px;
}

.blog-mobile-title {
    padding-bottom: 16px;
}

@media screen and (max-width: 992px) {
    .blog-upper-wrapper {
        position: relative;
    }

    .blog-posts-wrapper {
        flex-direction: column;
        border-top: none;
    }

    .divider-blog {
        width: calc(100% + 48px);
    }

    .featured-post-wrapper {
        min-width: fit-content;
    }

    .regular-card-container {
        width: 100%;
    }

    .card-regular-wrapper {
        width: 100%;
        max-width: fit-content;
    }

    .wrapper-content-card {
        max-width: fit-content;
    }

    .blog-section {
        padding: 48px 0;
    }

    .blog-posts-wrapper {
        gap: 16px;
        border-top: 1px solid var(--bs-neutral);
    }
}

@media screen and (max-width: 576px) {
    .blog-upper-wrapper {
        .divider-blog {
            width: calc(100% + 48px);
        }
    }

    .divider-blog {
        width: 100%;
    }

    .blog-section {
        padding-bottom: 0;
    }

    .card-body-wrapper {
        max-width: 100%;
    }

    .card-regular-wrapper {
        gap: 12px;
        width: calc(100% + 24px);
        max-width: calc(100% + 24px);
    }

    .featured-post {
        padding-bottom: 16px;
    }

    .post-link-blog {
        font-size: 14px;
        line-height: 20px;
        display: block;
    }

    .blog-posts-wrapper {
        padding-top: 16px;
    }

    .blog-upper-wrapper {
        padding-bottom: 16px;
    }

    .regular-post-img {
        max-width: 135px;
        height: auto;
    }
}
/* ===== BLOG FEATURED TITLE (same style as secondary titles) ===== */
.blog-featured-title {
    color: var(--bs-black);
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

/* ===== Secondary post thumbnails ===== */
.card-regular-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 100%;
}

.card-regular-wrapper .card-body-wrapper {
    flex: 1 1 0;
    min-width: 0;
}

.card-regular-thumbnail {
    flex: 0 0 120px;
    width: 120px;
}

.card-regular-thumbnail img,
.card-regular-thumbnail .regular-post-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .card-regular-thumbnail {
        flex: 0 0 80px;
        width: 80px;
    }
}

/* ===== BLOG ROW LAYOUT (EN) ===== */
.blog-row-layout {
    gap: 20px;
}

.blog-row-layout .blog-row-item {
    padding-right: 20px;
    border-right: 1px solid var(--bs-neutral);
    flex: 1;
}

.blog-row-layout .blog-row-item:last-child {
    border-right: none;
}

@media screen and (max-width: 992px) {
    .blog-row-layout {
        flex-direction: column;
    }

    .blog-row-layout .blog-row-item {
        border-right: none;
        border-bottom: 1px solid var(--bs-neutral);
        padding-bottom: 20px;
        padding-right: 0;
    }

    .blog-row-layout .blog-row-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
