/* ============================================
   ARTICLE PAGE
   ============================================ */

/* Layout principal article + sidebar */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: start;
    padding: 0 10px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   Article principal
   ============================================ */
.article-main {
    min-width: 0;
}

/* Catégorie */
.article-category-label {
    display: inline-block;
    background: var(--nfl-red);
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 16px;
}

/* Header */
.article-header {
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--nfl-dark);
    margin: 0 0 12px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.article-date,
.article-updated {
    font-size: 13px;
    color: var(--nfl-gray);
}

/* Auteur */
.author-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 24px;
}

.author-block-share {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.author-block-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.author-block-link:hover {
    opacity: 0.8;
}

.author-block-link:hover .author-name {
    color: var(--nfl-blue);
    text-decoration: underline;
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--nfl-dark);
}

.author-title {
    font-size: 12px;
    color: var(--nfl-gray);
}

/* Image principale */
.article-featured-image {
    margin-bottom: 24px;
    border-radius: 6px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
}

.article-tag {
    background: #f0f0f0;
    color: var(--nfl-gray);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
    cursor: default;
}

.article-tag:hover {
    background: var(--nfl-blue);
    color: white;
}

/* Corps de l'article */
.article-body {
    font-size: 17px;
    line-height: 1.85;
    color: #2a2a2a;
}

.article-excerpt {
    font-size: 18px;
    font-weight: 500;
    color: #444;
    line-height: 1.7;
    border-left: 4px solid var(--nfl-blue);
    padding-left: 18px;
    margin-bottom: 28px;
    font-style: italic;
}

.article-body p {
    margin-bottom: 22px;
}

.article-body a {
    color: var(--nfl-blue);
    font-weight: 500;
    text-decoration: none;
}

.article-body a:hover {
    text-decoration: underline;
}

.article-body h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--nfl-dark);
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--nfl-blue);
}

.article-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--nfl-dark);
    margin: 28px 0 12px;
}

.article-body ul,
.article-body ol {
    padding-left: 24px;
    margin-bottom: 22px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    background: var(--nfl-light);
    border-left: 4px solid var(--nfl-blue);
    padding: 16px 20px;
    margin: 28px 0;
    border-radius: 0 4px 4px 0;
    font-style: italic;
    color: #555;
}

/* Conclusion */
.article-conclusion {
    margin-top: 40px;
    padding: 22px 24px;
    background: var(--nfl-light);
    border-radius: 6px;
    border-left: 4px solid var(--nfl-blue);
}

.article-conclusion p {
    font-size: 16px;
    font-style: italic;
    margin: 0;
    color: #555;
}

/* Partage */
.share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
    color: white;
}

.share-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.share-facebook { background: #1877f2; }
.share-twitter  { background: #000; }
.share-copy     { background: #e0e0e0; color: #333; }
.share-copy.copied { background: var(--nfl-blue); color: white; }

/* ============================================
   Sidebar
   ============================================ */
.article-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-block {
    background: white;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.sidebar-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nfl-dark);
    padding: 14px 16px;
    border-bottom: 2px solid var(--nfl-blue);
    margin: 0;
    background: white;
}

.related-list {
    display: flex;
    flex-direction: column;
}

.related-card {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.15s;
}

.related-card:last-child {
    border-bottom: none;
}

.related-card:hover {
    background: var(--nfl-light);
}

.related-img {
    width: 72px;
    height: 52px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.related-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.related-category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--nfl-red);
}

.related-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--nfl-dark);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-date {
    font-size: 11px;
    color: var(--nfl-gray);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .sidebar-block {
        display: none;
    }
}

@media (max-width: 768px) {
    .article-layout {
        padding: 0 0 40px;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .article-body {
        font-size: 16px;
    }

    .article-body h2 {
        font-size: 20px;
    }

    .article-excerpt {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 20px;
    }

    .author-block {
        gap: 10px;
    }

    .article-body {
        font-size: 15px;
    }
}
