/* Флаш карт гарчиг хэсгийн CSS - title.css */

.flashcard-title-container {
    text-align: center;
    font-family: var(--font-family);
    margin-bottom: 2px;
    margin-top: 30px;
    position: relative;
}

.flashcard-title {
    color: #1f2937;
    font-weight: 700;
    font-size: 56px;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    letter-spacing: -0.5px;
    font-family: var(--font-family);
}

.flashcard-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: #6366f1; /* Индиго өнгө */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.flashcard-description {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    margin: 12px auto 0;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
    padding: 0 20px;
    opacity: 0.9;
}

/* Хариуцлагатай дизайн */
@media (max-width: 768px) {
    .flashcard-title {
        font-size: 28px;
    }
    
    .flashcard-description {
        font-size: 13px;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .flashcard-title-container {
        margin-top: 24px;
        margin-bottom: 20px;
    }
    
    .flashcard-title {
        font-size: 24px;
    }
}