@charset "UTF-8";

#section_04 {
    background-image: url('../../../../images/Vmap/section_bg_003.webp');
    background-size: contain;
    background-position: bottom;
    background-repeat: repeat-x;
}

#section_04 .content-block-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00738B;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 3rem;
}

#section_04 .content-block-title::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #A9CD42;
    flex-shrink: 0;
}

#section_04 .about-text {
    font-size: 1rem;
}

#section_04 .about-text p+p {
    margin-top: 20px;
}

/* #section_04 .award-card {
    background: #fff;
    border: 1px solid rgba(26, 26, 46, 0.08);
    padding: 2rem 5rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
} */

#section_04 .award-card:hover {
    box-shadow: 0 12px 40px rgba(26, 45, 90, 0.1);
}

#section_04 .highlight-box {
    background: linear-gradient(135deg, #50ABBD 0%, #00738B 100%);
    padding: 2rem 5rem;
    border-color: #00738B;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 30px;
}

#section_04 .highlight-box .card-left {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

#section_04 .award-label {
    font-size:0.9rem;
    color: #fff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    /* opacity removed for contrast */
}

#section_04 .award-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD600;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 6px;
}

#section_04 .award-amount-unit {
    font-size: 20px;
    font-weight: 400;
}

#section_04 .award-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 400px;
    color: #fff;
}

@media screen and (max-width: 768px) {

    #section_04 .highlight-box {
        flex-direction: column;
        padding: 2rem 2rem;
    }
}