.cw-atl {
    --cw-ink: #10202f;
    --cw-body: #445260;
    --cw-line: #dbe6ef;
    --cw-surface: #ffffff;
    --cw-page: #f3f7fb;
    --cw-blue: #0072bc;
    --cw-blue-dark: #00517f;
    --cw-blue-deep: #013a5c;
    --cw-blue-tint: #e6f3fa;
    --cw-gold: #c99a49;
    font-family: "Pretendard", "Noto Sans KR", -apple-system, "Malgun Gothic", sans-serif;
    color: var(--cw-ink);
    /*max-width: 960px;*/
    margin: 0 auto;
    background: var(--cw-page);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--cw-line);
}

.cw-atl * {
    box-sizing: border-box;
}

.cw-atl .cw-hero {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 44px 40px;
    background: linear-gradient(135deg, var(--cw-blue-deep) 0%, var(--cw-blue-dark) 55%, var(--cw-blue) 130%);
    overflow: hidden;
}

    .cw-atl .cw-hero::before {
        content: "";
        position: absolute;
        top: -60px;
        right: 140px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 70%);
    }

.cw-atl .cw-hero-text {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.cw-atl .cw-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #cfe8f7;
    margin-bottom: 18px;
}

    .cw-atl .cw-mark svg {
        flex-shrink: 0;
    }

.cw-atl h1 {
    font-size: 32px;
    line-height: 1.28;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
}

.cw-atl .cw-hero-sub {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: #c7e2f2;
    max-width: 420px;
}

.cw-atl .cw-hero-photo {
    position: relative;
    flex: 0 0 180px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.94);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

    .cw-atl .cw-hero-photo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.cw-atl .cw-body-pad {
    padding: 40px 44px 44px;
}

.cw-atl .cw-lead {
    font-size: 16.5px;
    line-height: 1.8;
    font-weight: 500;
    color: var(--cw-body);
    margin: 0 0 34px;
}

.cw-atl .cw-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 0 0 40px;
}

.cw-atl .cw-product {
    background: var(--cw-surface);
    border: 1px solid var(--cw-line);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
}

    .cw-atl .cw-product svg {
        color: var(--cw-blue);
        margin-bottom: 10px;
    }

    .cw-atl .cw-product span {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--cw-ink);
    }

.cw-atl .cw-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cw-blue-dark);
    margin: 0 0 16px;
}

    .cw-atl .cw-section-label::before {
        content: "";
        width: 3px;
        height: 14px;
        border-radius: 2px;
        background: var(--cw-gold);
    }

.cw-atl .cw-areas {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 12px;
    margin: 0 0 40px;
    padding: 20px 24px;
    background: var(--cw-surface);
    border: 1px solid var(--cw-line);
    border-radius: 16px;
}

    .cw-atl .cw-areas li {
        display: flex;
        align-items: baseline;
        gap: 9px;
        font-size: 14px;
        font-weight: 500;
        color: var(--cw-body);
    }

        .cw-atl .cw-areas li::before {
            content: "";
            flex-shrink: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cw-blue);
            transform: translateY(-2px);
        }

        .cw-atl .cw-areas li.cw-al {
            color: var(--cw-blue-dark);
            font-weight: 600;
        }

            .cw-atl .cw-areas li.cw-al::before {
                background: var(--cw-gold);
            }

.cw-atl .cw-call {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    background: var(--cw-blue-deep);
    border-radius: 18px;
    padding: 26px 32px;
    position: relative;
    overflow: hidden;
}

    .cw-atl .cw-call::after {
        content: "";
        position: absolute;
        top: -40px;
        right: -20px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
    }

.cw-atl .cw-call-label {
    position: relative;
    font-size: 12.5px;
    font-weight: 600;
    color: #9cd0ec;
    margin: 0 0 4px;
    letter-spacing: 0.02em;
}

.cw-atl .cw-call-text {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cw-atl .cw-call a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-weight: 800;
    color: var(--cw-blue-deep);
    background: #ffffff;
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .cw-atl .cw-hero {
        flex-direction: column;
        padding: 32px 24px;
        text-align: left;
    }

    .cw-atl .cw-hero-photo {
        flex: 0 0 auto;
        width: 140px;
        height: 140px;
    }

    .cw-atl .cw-body-pad {
        padding: 32px 24px 36px;
    }

    .cw-atl h1 {
        font-size: 26px;
    }

    .cw-atl .cw-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .cw-atl .cw-areas {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px 18px;
    }

    .cw-atl .cw-call {
        flex-direction: column;
        align-items: flex-start;
    }
}

