/* --- Tudta-e szekció --- */
.tudta-e {
    background: #f7f7f7;
    padding: 3rem 1rem;
    text-align: center;
    border-top: 4px solid var(--red);
}

.tudta-e h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 2rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fact {
    background: #fff;
    border-left: 5px solid var(--red);
    border-radius: 10px;
    padding: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.fact h3 {
    color: var(--red);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.fact p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobilbarát */
@media (max-width: 600px) {
    .tudta-e {
        padding: 2rem 0.5rem;
    }
}
