.ce-blog-showcase {
    background: linear-gradient(180deg, #ede4d5 0%, #e2d3bf 100%);
    padding: 48px 20px;
}

.ce-blog-showcase__container {
    max-width: 1100px;
    margin: 0 auto;
}

.ce-blog-showcase__heading {
    text-align: center;
    margin-bottom: 28px;
}

.ce-blog-showcase__heading h2 {
    margin: 0 0 10px;
    color: #4b3a2f;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
}

.ce-blog-showcase__heading p {
    margin: 0 auto;
    max-width: 760px;
    color: #6b5848;
    font-size: 1.05rem;
    line-height: 1.8;
}

.ce-blog-showcase__featured {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #d7c4ac;
    background: #f8f2e8;
    box-shadow: 0 12px 32px rgba(75, 58, 47, 0.12);
    margin-bottom: 28px;
}

.ce-blog-showcase__featured--no-image {
    grid-template-columns: 1fr;
}

.ce-blog-showcase__featured--no-image .ce-blog-showcase__featured-content {
    border-radius: 22px;
}

.ce-blog-showcase__featured-image {
    display: block;
    min-height: 100%;
    background: #d9ccb8;
}

.ce-blog-showcase__featured-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

.ce-blog-showcase__featured-content {
    padding: 42px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #8a7a5a 0%, #b28b67 100%);
    color: #fffaf2;
}

.ce-blog-showcase__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #f3e8d8;
}

.ce-blog-showcase__featured-content h3 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.12;
}

.ce-blog-showcase__featured-content h3 a,
.ce-blog-showcase__card h3 a {
    color: inherit;
    text-decoration: none;
}

.ce-blog-showcase__featured-content h3 a:hover,
.ce-blog-showcase__featured-content h3 a:focus,
.ce-blog-showcase__card h3 a:hover,
.ce-blog-showcase__card h3 a:focus {
    text-decoration: underline;
}

.ce-blog-showcase__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    color: #f1e6d7;
    font-size: 0.95rem;
}

.ce-blog-showcase__excerpt {
    color: #fff4e9;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.ce-blog-showcase__button,
.ce-blog-showcase__card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
}

.ce-blog-showcase__button {
    background: #fffaf2;
    color: #6a523f;
}

.ce-blog-showcase__button:hover,
.ce-blog-showcase__button:focus {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

.ce-blog-showcase__grid {
    display: grid;
    gap: 24px;
}

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

.ce-blog-showcase__grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ce-blog-showcase__grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ce-blog-showcase__card {
    background: #f8f2e8;
    border: 1px solid #d7c4ac;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(75, 58, 47, 0.08);
    display: flex;
    flex-direction: column;
}

.ce-blog-showcase__card-image {
    display: block;
    background: #ddd0bc;
}

.ce-blog-showcase__card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.ce-blog-showcase__card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.ce-blog-showcase__tag {
    display: inline-flex;
    width: fit-content;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7b5e46;
    background: #eadbc7;
    border-radius: 999px;
    padding: 7px 10px;
}

.ce-blog-showcase__card h3 {
    margin: 0;
    color: #4b3a2f;
    font-size: 1.55rem;
    line-height: 1.2;
}

.ce-blog-showcase__card-date {
    margin: 0;
    color: #7a6a5a;
    font-size: 0.95rem;
}

.ce-blog-showcase__card-excerpt {
    margin: 0;
    color: #5a493d;
    line-height: 1.75;
    flex: 1;
}

.ce-blog-showcase__card-link {
    background: #7b5e46;
    color: #fffaf2;
}

.ce-blog-showcase__card-link:hover,
.ce-blog-showcase__card-link:focus {
    background: #684d38;
    transform: translateY(-1px);
}

.ce-blog-showcase__pagination {
    margin-top: 30px;
}

.ce-blog-showcase__pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ce-blog-showcase__pagination a,
.ce-blog-showcase__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #ccb79d;
    background: #f8f2e8;
    color: #5a4637;
    text-decoration: none;
    font-weight: 600;
}

.ce-blog-showcase__pagination a:hover,
.ce-blog-showcase__pagination a:focus {
    background: #eadbc7;
}

.ce-blog-showcase__pagination .current {
    background: #7b5e46;
    color: #fffaf2;
    border-color: #7b5e46;
}

.ce-blog-showcase-empty {
    padding: 16px;
    background: #f8f2e8;
    border: 1px solid #d7c4ac;
    border-radius: 12px;
    color: #4b3a2f;
}

@media (max-width: 900px) {
    .ce-blog-showcase__featured {
        grid-template-columns: 1fr;
    }

    .ce-blog-showcase__featured-image img {
        min-height: 280px;
    }

    .ce-blog-showcase__grid--cols-3,
    .ce-blog-showcase__grid--cols-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ce-blog-showcase {
        padding: 34px 14px;
    }

    .ce-blog-showcase__featured-content {
        padding: 28px 22px;
    }

    .ce-blog-showcase__card-content {
        padding: 20px;
    }

    .ce-blog-showcase__card h3 {
        font-size: 1.35rem;
    }
}
