/* Block: double-banner */

.block-double-banner {
    width: 100%;
}

/* --- Magazine Section --- */
.banner-magazine {
    padding: 4rem 0;
    background-color: #F5F6F7;
    position: relative;
    overflow: hidden;
}

.banner-magazine .mag-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.banner-magazine .mag-decoration-1 {
    top: -10%;
    left: -5%;
    width: 40%;
    max-width: 400px;
    opacity: 0.6;
}

.banner-magazine .mag-decoration-2 {
    bottom: -15%;
    left: 10%;
    width: 35%;
    max-width: 350px;
    opacity: 0.5;
}

.banner-magazine .mag-decoration img {
    width: 100%;
    height: auto;
}

.banner-magazine .container {
    position: relative;
    z-index: 1;
}

.banner-magazine .mag-image-wrapper {
    position: relative;
    display: inline-block;
    z-index: 2;
    width: 100%;
    max-width: 300px;
}

.banner-magazine .mag-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.banner-magazine .mag-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.banner-magazine .mag-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: #3DD9E4;
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.banner-magazine .mag-title {
    font-size: 2rem;
    font-weight: 700;
    color: #323232;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.banner-magazine .btn-magazine {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #009DDF;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 3.125rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.banner-magazine .btn-magazine:hover {
    background-color: #0087C1;
    color: #FFFFFF;
}

.banner-magazine .icon-download {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* --- Education Section --- */
.banner-education {
    background-color: #002F43;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.banner-education .edu-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.banner-education .edu-decoration-1 {
    top: -10%;
    right: -5%;
    width: 45%;
    max-width: 450px;
}

.banner-education .edu-decoration img {
    width: 100%;
    height: auto;
    filter: brightness(0.8);
}

.banner-education .container {
    position: relative;
    z-index: 2;
}

.banner-education .edu-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.banner-education .btn-education {
    display: inline-block;
    background-color: #009DDF;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 3.125rem;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.banner-education .btn-education:hover {
    background-color: #0087C1;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.banner-education .edu-image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.banner-education .edu-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

/* Responsive */
@media (min-width: 768px) {
    .banner-magazine {
        padding: 5rem 0;
    }

    .banner-magazine .mag-title {
        font-size: 3rem;
    }

    .banner-education {
        padding: 0;
        min-height: 25rem;
    }

    .banner-education .edu-image-wrapper {
    }

    .banner-education .edu-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top center;
        border-radius: 0;
        mask-image: linear-gradient(to left, transparent 0%, black 25%);
        -webkit-mask-image: linear-gradient(to left, transparent 0%, black 25%);
        display: block;
    }

    .banner-education .edu-title {
        font-size: 2.5rem;
        max-width: 25rem;
    }
}