/* Desktop-specific CSS (min-width: 769px) */
.quiz-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 50%, #e6fff9 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 1000px;
    border-left: 4px solid var(--secondary-color);
}

.news-container {
    max-width: 1400px !important;
    margin: 40px auto;
    padding: 30px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.news-column {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.news-column h2 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #eef2f7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-column h2 i {
    font-size: 26px;
}

.news-item-compact {
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.news-item-compact:last-child {
    border-bottom: none;
}

.news-item-compact h4 {
    color: #333;
    font-size: 15px;
    margin: 0 0 10px 0;
    line-height: 1.4;
    cursor: pointer;
    transition: color 0.2s;
}

.news-item-compact h4:hover {
    color: var(--secondary-color);
}

.news-item-compact img {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.news-item-compact ul {
    list-style: disc;
    padding-left: 18px;
    margin: 8px 0;
    font-size: 13px;
    color: #555;
}

.news-item-compact ul li {
    margin-bottom: 5px;
    line-height: 1.5;
}

.news-meta {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-read-more {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.news-read-more:hover {
    text-decoration: underline;
}

/* =========================================
   RESULT PAGE ADJUSTMENT (Wider on Desktop)
   ========================================= */
.result {
    max-width: 1000px !important;
}