/* =============================================
   Fotbal247.com — Stiluri custom
   ============================================= */

/* --- Tipografie --- */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4,
.entry-title,
.page-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* --- Carduri articole (AOS fade-up) --- */
.ct-blog-post,
article.post {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ct-blog-post:hover,
article.post:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* --- Featured image hover zoom --- */
.ct-blog-post .ct-image-container img,
.post-thumbnail img {
    transition: transform 0.35s ease;
}

.ct-blog-post:hover .ct-image-container img,
article.post:hover .post-thumbnail img {
    transform: scale(1.04);
}

/* --- Vocile redacției în articol --- */
.entry-content p:has(> strong:first-child) {
    border-left: 3px solid #e63946;
    padding-left: 12px;
    margin-bottom: 1.2em;
    line-height: 1.7;
}

/* Verdict redacție — bloc final */
.entry-content hr + p,
.entry-content hr ~ p {
    background: #f8f8f8;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.95em;
}

/* --- Badge categorie --- */
.ct-post-meta .cat-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #e63946;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    text-decoration: none;
}

/* --- Icoane Font Awesome langa titlu sectiuni --- */
.entry-title .fa,
.entry-title .fas,
.entry-title .far {
    margin-right: 6px;
    color: #e63946;
}

/* --- YouTube embed responsive --- */
.entry-content iframe[src*="youtube"],
.entry-content iframe[src*="youtu.be"] {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    margin: 1.5em 0;
}

/* --- Animate.css: titlu articol singular apare cu fadeInDown --- */
.single .entry-title {
    animation: fadeInDown 0.5s ease both;
}

/* --- Bara accent top pe single post --- */
.single article.post {
    border-top: 4px solid #e63946;
}

/* --- Responsive: mobile --- */
@media (max-width: 600px) {
    h1, h2, .entry-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
}
