table th {
    border: 1px solid #e5e7eb;
}

table td {
    border: 1px solid #e5e7eb;
    line-height: 1.8;
}

.content-table td:first-child {
    text-align: center;
    font-weight: 500;
    color: #1f2937;
    background: #fafbfc;
}

.content-table a {
    color: var(--color-primary);
}

.content-table a:hover {
    text-decoration: underline;
}

/* ===== 정보 박스 스타일 ===== */
.info-box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.info-box {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.info-box__header {
    background: #f9fafb;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.info-box__title {
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.info-box__body {
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .info-box-container {display: flex; flex-direction: column;}
}
