.sb-media-grid-section {
    padding: 15px 0;
    background-color: var(--bg-color, #ffffff);
    overflow: hidden;
}
.sb-media-grid-section .site-container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}
.sb-mg-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.sb-mg-section-title {
    font-size: 46px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 0 16px 0;
}
.sb-mg-section-subtitle {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.sb-mg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}
.sb-mg-card {
    position: relative;
    display: block;
    height: 885px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    text-decoration: none !important;
    z-index: 1;
}
.sb-mg-card-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.sb-mg-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.sb-mg-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.sb-mg-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}
.sb-mg-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
    max-width: 90%;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.sb-mg-card:hover .sb-mg-card-img-wrap img {
    transform: scale(1.06);
}
.sb-mg-card:hover .sb-mg-card-overlay {
    background-color: rgba(0, 0, 0, 0.42);
}
@media (max-width: 1200px) {
    .sb-mg-card-title {
        font-size: 28px;
    }
}
@media (max-width: 991px) {
    .sb-media-grid-section {
        padding: 15px 0;
    }
    .sb-media-grid-section .site-container {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    .sb-mg-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    .sb-mg-section-title {
        font-size: 34px;
    }
    .sb-mg-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .sb-mg-card {
        height: 550px;
        border-radius: 0;
    }
    .sb-mg-card-content {
        padding: 30px;
    }
    .sb-mg-card-title {
        font-size: 26px;
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .sb-mg-card {
        height: 450px;
    }
    .sb-mg-card-title {
        font-size: 22px;
    }
    .sb-mg-card-content {
        padding: 24px;
    }
}
.sb-wide-banner-section {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: #ffffff;
}
.sb-wide-banner-section .site-container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.sb-wide-banner-img-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}
.sb-wide-banner-img-wrap img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}
.sb-wide-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.22);
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 1200px) {
    .sb-wide-banner-img-wrap {
        height: 450px;
    }
}
@media (max-width: 991px) {
    .sb-wide-banner-img-wrap {
        height: 400px;
    }
}
@media (max-width: 480px) {
    .sb-wide-banner-img-wrap {
        height: 300px;
    }
}