/* 
 * Стили для раздела "Спортивные факты"
 * Необычный, современный и чистый формат 
 */

.facts-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.fact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    border-left: 5px solid #3b82f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.fact-card.myth {
    border-left-color: #ef4444;
}

.fact-number {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #3b82f6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.fact-card.myth .fact-number {
    background: #ef4444;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.fact-title {
    font-size: 22px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 15px;
    color: #111827;
}

.fact-text {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Скрытый контент для отложенной публикации */
.facts-hidden-overlay {
    text-align: center;
    padding: 50px 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-top: 20px;
}

.facts-hidden-overlay h2 {
    color: #374151;
    margin-bottom: 10px;
}

.facts-hidden-overlay p {
    color: #6b7280;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .facts-wrapper {
        padding: 0 10px;
    }
    
    .fact-card {
        padding: 25px 20px 20px 20px;
        margin-top: 25px; /* Чтобы дать место номеру */
        border-left-width: 4px;
    }
    
    .fact-number {
        top: -25px;
        left: 20px; /* Внутрь карточки, чтобы не резалось краем экрана */
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .fact-title {
        font-size: 19px;
        margin-top: 10px;
    }
    
    .fact-text {
        font-size: 16px;
    }
}
