.notice-page {
    --notice-primary-soft: rgba(47, 111, 237, 0.09);
}

.notice-shell {
    width: min(100%, 920px);
    margin: 0 auto;
    padding: 34px 24px 56px;
}

.notice-hero {
    margin-bottom: 18px;
}

.notice-back-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 18px;
    color: var(--cal-muted);
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
}

.notice-back-link:hover,
.notice-back-link:focus {
    color: var(--cal-primary);
}

.notice-heading {
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.notice-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    background: var(--notice-primary-soft);
    border: 1px solid rgba(47, 111, 237, 0.18);
    border-radius: 999px;
    color: var(--cal-primary);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
}

.notice-heading h1 {
    margin: 0;
    color: var(--cal-text);
    font-size: clamp(1.75rem, 1.25rem + 1.2vw, 2.35rem);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.notice-heading > p {
    margin: 10px 0 0;
    color: var(--cal-muted);
    font-size: 1rem;
    font-weight: 650;
}

.notice-card {
    position: relative;
    overflow: hidden;
    background: var(--cal-surface);
    border: 1px solid var(--cal-line);
    border-radius: 18px;
    box-shadow: var(--cal-shadow);
}

.notice-content {
    padding: clamp(28px, 4vw, 48px);
    color: var(--cal-text);
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.notice-content > p {
    margin: 0 0 1.45rem;
    color: #344057;
    font-size: 1.04rem;
    font-weight: 600;
    letter-spacing: -0.012em;
    line-height: 1.85;
}

.notice-contact {
    margin: 30px 0;
    padding: 22px;
    background: linear-gradient(145deg, #f8fbff, var(--cal-surface-soft));
    border: 1px solid #d7e4ff;
    border-radius: 16px;
}

.notice-contact-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    color: var(--cal-primary);
    transform: translateY(-50%);
    pointer-events: none;
}

.notice-email {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.notice-email-field {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.notice-email .form-control {
    width: 100%;
    height: 100%;
    min-width: 0;
    padding-left: 44px;
    border-color: var(--cal-line);
    border-radius: 10px;
    color: var(--cal-muted);
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 0.94rem;
    font-weight: 650;
    user-select: text;
}

.notice-email .form-control:focus {
    border-color: rgba(47, 111, 237, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(47, 111, 237, 0.1);
}

.notice-email .btn {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    border-radius: 10px;
}

.notice-page .btn:hover,
.notice-page .btn:focus {
    transform: none;
}

.notice-content > .notice-closing {
    margin: 32px 0 0;
    color: var(--cal-text);
    font-weight: 800;
}

@media (max-width: 991px) {
    .notice-shell {
        padding-top: 28px;
    }
}

@media (max-width: 575px) {
    .notice-shell {
        padding: 22px 14px 40px;
    }

    .notice-back-link {
        margin-bottom: 14px;
    }

    .notice-heading > p {
        font-size: 0.93rem;
        line-height: 1.55;
    }

    .notice-content {
        padding: 26px 20px 28px;
    }

    .notice-content > p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .notice-contact {
        padding: 18px;
    }

    .notice-email {
        flex-direction: column;
    }

    .notice-email-field {
        width: 100%;
    }

    .notice-email .form-control,
    .notice-email .btn {
        min-height: 44px;
        width: 100%;
    }
}
