.questions-archive {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 15px;
}

.archive-month {
    margin-bottom: 35px;
}

.archive-month h3 {
    color: #333;
    margin-bottom: 12px;
    font-size: 1.45em;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.archive-days {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.archive-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    background: #f7f9fc;
    color: #043e63;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    transition: all 0.2s;
    border: 1px solid #e0e6f0;
}

.archive-day:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.25);
}