/* ── Import shared styles ────────────────────────────────────────────────── */
@import url('common.css');
/* ── Policy Pages (Specific Styles) ─────────────────────────────────────── */
/* ── Header ─────────────────────────────────────────────────────────────── */
.policy-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.policy-header a {
    text-decoration: none;
}

.policy-logo {
    font-family: 'Recoleta', serif;
    font-size: 28px;
    font-weight: 500;
    color: #120C0C;
    letter-spacing: 0;
    line-height: 1;
}

.policy-logo img {
    width: 127px;
    height: 127px;
}

/* ── Main Content ───────────────────────────────────────────────────────── */
.policy-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: none;
    margin: 40px 0;
    min-height: 100dvh;
}

.policy-main .otnotice-menu, .policy-main .otnotice-menu-mobile {
   display: none;
}

.policy-main .otnotice-sections {
   max-width: 1000px;
    margin: 0 auto;
}

.policy-main h1, .policy-main .otnotice-section-content > p:nth-child(1) {
    font-family: 'Recoleta', serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.15;
    color: #120C0C;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 40px;
}

.policy-main p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
    color: #000;
}

.policy-main ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 18px;
}

.policy-main ul li {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #000;
    opacity: 0.85;
    margin-bottom: 6px;
}

.policy-main a {
    color: #EB0005;
    text-decoration: underline;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
    .policy-logo img {
        width: 80px;
        height: 80px;
    }

    .policy-main h1, .policy-main .otnotice-section-content > p:nth-child(1) {
        font-size: 32px;
    }

    .policy-main .otnotice-sections > .otnotice-section > .otnotice-section-content {
        margin-right: 8px;
        margin-left: 8px;
    }

}
