@charset "utf-8";
@import url('color/semantic.css');
/* 약관 페이지 공통 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-default);
}

.terms-container {
    gap: 60px;
}

.terms-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-border-light);
}

.terms-content {
    font-size: 0.95rem;
    line-height: 1.8;
    gap: 12px;
}

.terms-intro {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--color-bg-warmgray-subtler);
    padding: 16px;
    border-radius: 12px;
}

.terms-gold-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-image: url('../img/ic-golden.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
}

.terms-intro p {
    flex: 1;
    font-size: 0.75rem;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--color-text-bold);
}

.terms-section {
    width: 100%;
}

.terms-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.terms-list-sub {
    color: var(--color-text-subtle);
}
.terms-list {
    margin-top: 4px;
}
.terms-list > li {
    position: relative;
    margin-top: 8px;
}

.terms-note {
    background-color: var(--color-bg-warmgray-subtler);
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
}

.terms-date {
    text-align: right;
    margin-top: 32px;
    font-size: 0.875rem;
    color: #666;
}

.terms-section-content {
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--color-text);
}
.terms-section-content.number-section {
    position: relative;
    padding-left: 20px;
}
.terms-list.number-section > li {
    padding-left: 20px;
}
.terms-sub-title {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 150%;
    color: var(--color-text-bold);
    margin-right: 4px;
}
.number {
    position: absolute;
    left: 0;
    top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.65rem;
    line-height: 150%;
    background-color: var(--color-bg-primary);
    border-radius: 50%;
    color: var(--color-text-inverse);
    width: 16px;
    height: 16px;
    margin-right: 4px;
}
.dot {
    position: absolute;
    left: 4px;
    top: 0;
    display: inline-block;
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background-color: var(--color-text);
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 8px;
}
.number-sub {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 150%;
    color: var(--color-text-bold);
    margin-right: 4px;
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    line-height: 150%;
}

.terms-table thead {
    background-color: var(--color-bg-warmgray-subtler);
}

.terms-table th {
    padding: 12px;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-text-bold);
    border: 1px solid var(--color-border);
    text-align: center;
}

.terms-table td {
    min-width: 100px;
    padding: 12px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    text-align: center;
}

.terms-table tbody tr {
    background-color: var(--color-bg-default);
}

.terms-table-link {
    text-decoration: underline;
}

.terms-content-wrapper {
    width: 100%;
}
.terms-content-title {
    width: 100%;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 150%;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border-warmgray-light);
    padding-bottom: 12px;
    margin-bottom: 12px;
}