/*     517595 : 한줄 텍스트      */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --teal: #0E9E8E;
    --teal-light: #14C4B2;
    --text-primary: #1F2937;
    --text-secondary: #374151;
    --text-muted: #6B7280;
    --bg: #FFFFFF;
    --bg-tint: #ECFDF5;
    --border: rgba(14,158,142,0.28);
    --highlight-bg: rgba(14,158,142,0.07);
}

.refund-page__RAND__ * { margin: 0; padding: 0; box-sizing: border-box; }

.refund-page__RAND__ {
    background: var(--bg);
    color: var(--text-secondary);
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 300;
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
    min-height: 100vh;
}

/* NAV */
.refund-nav__RAND__ {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 1.25rem 4rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
    position: sticky !important;
    top: 0;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
}
.refund-nav-back__RAND__ {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}
.refund-nav-back__RAND__:hover { color: var(--teal); }
.refund-nav-links__RAND__ {
    display: flex !important;
    gap: 2rem;
    align-items: center !important;
    font-size: 13px;
}
.refund-nav-links__RAND__ a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.refund-nav-links__RAND__ a:hover { color: var(--teal); }
.refund-nav-links__RAND__ a.active__RAND__ {
    color: var(--teal);
    font-weight: 500;
}

/* HEADER */
.refund-header__RAND__ {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}
.refund-eyebrow__RAND__ {
    font-size: 12px;
    color: var(--teal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    font-weight: 500;
}
.refund-title__RAND__ {
    font-family: 'DM Serif Display', serif !important;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
    font-weight: 400;
}
.refund-date__RAND__ {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid var(--border);
}

/* CONTENT */
.refund-content__RAND__ {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 2rem 4rem;
}
.refund-h2__RAND__ {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--teal);
    margin: 2.2rem 0 0.7rem;
    padding-bottom: 0.4rem;
    border-bottom: 0.5px solid var(--border);
}
.refund-h3__RAND__ {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 1.4rem 0 0.45rem;
}
.refund-body__RAND__ {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.9rem;
}
.refund-body__RAND__ strong {
    color: var(--text-primary);
    font-weight: 500;
}
.refund-list__RAND__ {
    padding-left: 1.25rem;
    margin-bottom: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.refund-list__RAND__ li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.refund-list__RAND__ li strong {
    color: var(--text-primary);
    font-weight: 500;
}
.refund-highlight__RAND__ {
    border-left: 3px solid var(--teal);
    padding: 0.85rem 1.1rem;
    background: var(--highlight-bg);
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 400;
    margin: 1rem 0;
    line-height: 1.65;
}
.refund-highlight__RAND__ strong { font-weight: 500; }

/* FOOTER */
.refund-footer__RAND__ {
    border-top: 0.5px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}
.refund-footer-links__RAND__ {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.refund-footer__RAND__ a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.refund-footer__RAND__ a:hover { color: var(--teal); }
.refund-footer-copy__RAND__ {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .refund-nav__RAND__ { padding: 1rem 1.25rem; }
    .refund-nav-links__RAND__ { display: none !important; }
    .refund-header__RAND__,
    .refund-content__RAND__ {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .refund-header__RAND__ { padding-top: 3rem; }
    .refund-footer-links__RAND__ { gap: 1rem; }
}

