/* static/css/terms.css */

.terms-section {
    background: var(--color-white);
}

.terms__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.term-item {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.term-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.term-item__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
    position: relative;
    padding-right: 1.2rem;
}

.term-item__title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.3rem;
    width: 6px;
    height: 70%;
    background: var(--color-gold);
    border-radius: 4px;
}

.term-item__content {
    color: var(--color-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

.term-item__content p {
    margin-bottom: 0.8rem;
}

.term-item__content ul,
.term-item__content ol {
    padding-right: 1.5rem;
    margin-bottom: 0.8rem;
}

.term-item__content li {
    margin-bottom: 0.4rem;
}

.alert {
    padding: 1.2rem 1.5rem;
    border-radius: 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #6c757d;
    text-align: center;
}

@media (max-width: 576px) {
    .term-item__title {
        font-size: 1.4rem;
    }
    .term-item__content {
        font-size: 0.95rem;
    }
}