:root {
    --primary-orange: #f3811f;
    --text-dark: #222222;
    --text-light: #555555;
    --white: #ffffff;
    --bg-light: #fdfdfd;
}

.article-container {
    max-width: 900px;
    margin: 70px auto;
    padding: 0 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 70px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #032475;
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    display: inline-block;
    margin-left: 15px;
    margin-right: 10px;
    top: 0%;
    transform: translateY(0%);
}

.hero-logo {
    position: relative;
    display: inline-block;
    height: 100px;
}

.category-tag {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.article-meta {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-article-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.article-content .lead {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 25px;
}

blockquote {
    border-left: 5px solid var(--primary-orange);
    padding: 20px 30px;
    margin: 40px 0;
    background: #fff9f4;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.article-gallery {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.article-gallery h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.extra-pics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.extra-pic {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.extra-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.extra-pic:hover img {
    transform: scale(1.05);
}

.article-footer {
    margin-top: 80px;
    text-align: center;
}

.btn-back {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.btn-back:hover {
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .article-header h1 { font-size: 2.2rem; }
    .main-article-image { height: 300px; }
    .article-content { font-size: 1.1rem; }
}


@media screen and (max-width: 768px) {
    .sponsors-header {
        height: 200px;
    }

    .article-header {
        top: 0;
        transform: translateY(0);
        position: relative;
    }

    .hero-logo {
        display: none;
    }

    .article-header h1 {
        font-size: 2.5rem;
        top: 0;
        transform: translateY(0);
    }
}

@media screen and (max-width: 480px) {
    .article-header h2 {
        font-size: 1.6rem;
    }
}

#content ol {
    list-style-position: inside;
    padding-left: 0;
    margin-top: 20px;
}

#content ol li {
    margin-bottom: 12px;
    font-weight: 500;
}

#content ul {
    list-style-type: "✔ ";
    list-style-position: inside;
    padding-left: 0;
}

#content ul li {
    margin-bottom: 8px;
}

@media screen and (max-width: 480px) {
    .article-header h1 {
        font-size: 1.4rem;
    }
}