.sbf-post-card-slider-section {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.sbf-post-card-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.sbf-post-card-slider-title {
    margin: 0;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    color: #17233c;
    letter-spacing: -0.03em;
}

.sbf-post-card-slider-nav {
    display: flex;
    gap: 14px;
}

.sbf-post-card-slider-nav button {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    border: none;
    background: #ff6a00;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sbf-post-card-slider-nav button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.sbf-post-card-slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sbf-post-card-track {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: stretch;
    transition: transform 0.55s ease;
    will-change: transform;
}

.sbf-post-card-slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    min-width: 33.3333%;
    box-sizing: border-box;
    padding: 0 12px;
}

.sbf-post-card-item {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #edf1ec;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.sbf-post-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(16, 24, 40, 0.12);
}

.sbf-post-card-image-wrap {
    overflow: hidden;
}

.sbf-post-card-image-link {
    display: block;
}

.sbf-post-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.sbf-post-card-item:hover .sbf-post-card-image {
    transform: scale(1.06);
}

.sbf-post-card-content {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sbf-post-card-meta {
    margin-bottom: 12px;
}

.sbf-post-card-date {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #0f766e;
    border: 1px solid #d8f3e8;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sbf-post-card-title {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sbf-post-card-title a {
    color: #122f2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sbf-post-card-title a:hover {
    color: #0f766e;
}

.sbf-post-card-excerpt {
    font-size: 15px;
    line-height: 1.85;
    color: #657670;
    margin-bottom: 20px;
}

.sbf-post-card-readmore-wrap {
    margin-top: auto;
}

.sbf-post-card-readmore {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: #ff6a00;
    text-decoration: none;
}

.sbf-post-card-readmore:hover {
    opacity: 0.85;
    color: #ff6a00;
}

.sbf-post-card-slider-button-wrap {
    margin-top: 42px;
    text-align: center;
}

.sbf-post-card-slider-button {
    text-decoration: none;
    min-width: 220px;
    justify-content: center;
}

@media (max-width: 1199px) {
    .sbf-post-card-slider-title {
        font-size: 44px;
    }

    .sbf-post-card-slide {
        flex: 0 0 50%;
        max-width: 50%;
        min-width: 50%;
    }

    .sbf-post-card-image {
        height: 230px;
    }

    .sbf-post-card-title {
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .sbf-post-card-slider-section {
        padding: 30px 0;
    }

    .sbf-post-card-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .sbf-post-card-slider-title {
        font-size: 30px;
    }

    .sbf-post-card-slide {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 0 6px;
    }

    .sbf-post-card-image {
        height: 220px;
    }

    .sbf-post-card-content {
        padding: 18px 18px 20px;
    }

    .sbf-post-card-title {
        font-size: 21px;
    }

    .sbf-post-card-excerpt {
        font-size: 14px;
        line-height: 1.75;
    }

    .sbf-post-card-slider-nav button {
        width: 48px;
        height: 48px;
    }
}