body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: url("/images/hero-bg-light.webp") no-repeat center center fixed;
    background-size: cover;
    color: #333;
    line-height: 1.6;
}

.wbs-page {
    background-color: #f6f8fa;
}


.wbs-container {
    max-width: 1140px;
    margin: 0 auto;
}

.wbs-header {
    text-align: center;
}

.wbs-title {
    font-weight: 700;
    font-size: 3rem;
    color: #000;
    margin-bottom: 12px;
}

.wbs-accent {
    display: inline-block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #1ea76d, #0d8e5b);
    border-radius: 999px;
}

.wbs-media-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 48px;
    margin-top: 40px;
}

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

@media (max-width: 640px) {
    .wbs-media-grid {
        grid-template-columns: 1fr;
    }
}

.wbs-media-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 61, 86, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wbs-media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 61, 86, 0.12);
}

.wbs-media-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #e4ebf1;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: var(--wbs-aspect-ratio, 16 / 9);
}

.wbs-media-video {
    width: 100%;
    height: 100%;
    background-color: #000;
    object-fit: cover;
}

.wbs-media-frame--portrait,
.wbs-media-frame[data-orientation="portrait"] {
    --wbs-aspect-ratio: 9 / 16;
}

.wbs-media-frame--portrait .wbs-media-video,
.wbs-media-frame[data-orientation="portrait"] .wbs-media-video {
    object-fit: contain;
}

@media (max-width: 640px) {
    .wbs-media-frame {
        aspect-ratio: auto;
        --wbs-aspect-ratio: auto;
    }

    .wbs-media-frame .wbs-media-video {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.wbs-media-placeholder {
    color: #5c6c74;
    font-weight: 600;
    font-size: 1rem;
    padding: 0 16px;
    text-align: center;
}

.wbs-media-title {
    margin-top: 16px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #13445e;
    text-align: center;
}

.wbs-body {
    max-width: 100ch;
    margin: 0 auto;
    color: #243744;
}

.wbs-body :where(p, ul, ol) {
    font-size: 1.05rem;
    line-height: 1.8;
}

.wbs-body ul {
    padding-left: 1.2em;
}

.wbs-body h2,
.wbs-body h3,
.wbs-body h4 {
    color: #0f3d56;
    margin-top: 1.8em;
}

.combined-content-section {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.combined-content {
    flex: 1 1 850px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.combined-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.combined-text {
    font-size: 15px;
    color: #555;
    text-align: justify;
}

.combined-text p {
    margin-bottom: 15px;
}

.combined-text :where(p, li, span, div) {
    text-align: justify;
}

.horizontal-line {
    height: 4px;
    background-color: #009241;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 25px;
    border-radius: 2px;
}

.wbs-card-section {
    margin-top: 48px;
    margin-bottom: 72px;
}


.wbs-card-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f3d56;
    text-align: center;
    margin-bottom: 48px;
}

.wbs-card-container {
    margin-bottom: 48px;
}

.wbs-card-container:last-child {
    margin-bottom: 64px;
}

.wbs-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px;
}

.wbs-card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wbs-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f3d56;
    margin: 0;
}

.wbs-card-body {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.75;
    text-align: justify;
}

.wbs-card-body :where(p, ul, ol) {
    margin-bottom: 16px;
}

.wbs-card-body :where(ul, ol) {
    padding-left: 1.2rem;
}

.wbs-card-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #e5eaef;
    display: flex;
    justify-content: flex-end;
}

.wbs-card-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #009241;
}
