.oc-sbb-section,
.oc-sbb-section * {
    box-sizing: border-box;
}

.oc-sbb-section {
    width: 100%;
    background: var(--oc-sbb-bg, #cfcfcf);
    padding: 54px 18px 58px;
    color: var(--oc-sbb-text, #555555);
    font-family: inherit;
    border: 0 !important;
    outline: 0 !important;
}

.oc-sbb-inner {
    width: min(100%, var(--oc-sbb-width, 1180px));
    margin: 0 auto;
    text-align: center;
    border: 0 !important;
    outline: 0 !important;
}

.oc-sbb-main-title {
    margin: 0 0 14px;
    color: var(--oc-sbb-accent, #e35b5b);
}

.oc-sbb-intro {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 34px;
    color: var(--oc-sbb-text, #555555);
    font-size: 18px;
    line-height: 1.65;
}

.oc-sbb-intro p {
    margin: 0 0 12px;
}

.oc-sbb-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    align-items: start;
    border: 0 !important;
    outline: 0 !important;
}

.oc-sbb-grid > .oc-sbb-card {
    min-width: 0;
    text-align: center;
    border-width: var(--oc-sbb-card-border-width, 0);
    border-style: solid;
    border-color: var(--oc-sbb-card-border-color, transparent);
    padding: var(--oc-sbb-card-padding, 0);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.oc-sbb-grid > .oc-sbb-card:hover {
    border-color: var(--oc-sbb-card-border-color, transparent);
}

.oc-sbb-image-link {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.oc-sbb-image,
.oc-sbb-image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
}

.oc-sbb-image-link:hover .oc-sbb-image,
.oc-sbb-image-link:focus .oc-sbb-image,
.oc-sbb-image-link:hover img,
.oc-sbb-image-link:focus img {
    transform: scale(1.025);
    filter: brightness(0.96);
}

.oc-sbb-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0.12));
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--oc-sbb-accent, #e35b5b);
    font-size: 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.oc-sbb-post-title {
    margin: 24px 0 18px;
    color: var(--oc-sbb-accent, #e35b5b);
}

.oc-sbb-post-title a {
    color: var(--oc-sbb-accent, #e35b5b);
    text-decoration: none !important;
}

.oc-sbb-post-title a:hover,
.oc-sbb-post-title a:focus {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.oc-sbb-excerpt {
    margin: 0 auto 24px;
    max-width: 560px;
    color: var(--oc-sbb-text, #555555);
    font-size: 16px;
    line-height: 1.65;
}

.oc-sbb-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    border: 2px solid var(--oc-sbb-button-bg, #1f1f1f);
    color: #ffffff;
    background: var(--oc-sbb-button-bg, #1f1f1f);
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.oc-sbb-readmore:hover,
.oc-sbb-readmore:focus {
    border-color: var(--oc-sbb-button-hover, #e35b5b);
    background: var(--oc-sbb-button-hover, #e35b5b);
    color: #ffffff;
    text-decoration: none;
}

.oc-sbb-empty {
    margin: 26px 0;
    font-size: 18px;
}

.oc-sbb-cta-wrap {
    margin-top: 46px;
}

.oc-sbb-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 30px;
    border: 2px solid var(--oc-sbb-button-bg, #1f1f1f);
    background: var(--oc-sbb-button-bg, #1f1f1f);
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.oc-sbb-cta:hover,
.oc-sbb-cta:focus {
    border-color: var(--oc-sbb-button-hover, #e35b5b);
    background: var(--oc-sbb-button-hover, #e35b5b);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .oc-sbb-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .oc-sbb-section {
        padding: 38px 14px 44px;
    }

    .oc-sbb-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .oc-sbb-intro {
        font-size: 16px;
    }

    .oc-sbb-readmore,
    .oc-sbb-cta {
        width: 100%;
        max-width: 340px;
    }
}
