/* Go Semi and Beyond - Publication Website Styles */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Corporate color palette - Advantest brand colors */
    --COLOR_BASE_DARK: #000;
    --COLOR_BASE_LIGHT: #fff;
    --COLOR_BRAND_PRIMARY: #91003c;
    --COLOR_BRAND_SECONDARY: #c31f66;
    --COLOR_BRAND_SUB_1: #651366;
    --COLOR_BRAND_SUB_2: #007B7F;  /* Teal - dark */
    --COLOR_BRAND_SUB_3: #009999;  /* Teal - medium */
    --COLOR_BRAND_SUB_4: #26A69A;  /* Teal - light */
    --COLOR_BRAND_SUB_4_LIGHT: #26A69A14;
    --COLOR_BRAND_SUB_5: #8c003d;
    --COLOR_FOREGROUND_DARK: #333;
    --COLOR_FOREGROUND_LIGHT: #fff;
    --COLOR_BACKGROUND_DARK: #333;
    --COLOR_BACKGROUND_LIGHT: #f8f9fa;
    --COLOR_OUTLINE_DARK: #c0c3bb;
    --COLOR_OUTLINE_LIGHT: #e9ecef;
    --COLOR_TEXT_BLACK: #222;
    --COLOR_TEXT_SECONDARY: #6c757d;
    --COLOR_TEXT_DATE: #747572;
    --COLOR_TEXT_PLACEHOLDER: #9fa19c;
    --COLOR_TEXT_LINK_HOVER: #750031;

    /* Theme mapping */
    --primary: var(--COLOR_BRAND_PRIMARY);
    --secondary: var(--COLOR_BRAND_SECONDARY);
    --accent: var(--COLOR_BRAND_SUB_2);
    --dark: var(--COLOR_FOREGROUND_DARK);
    --light: var(--COLOR_FOREGROUND_LIGHT);
    --light-gray: var(--COLOR_BACKGROUND_LIGHT);
    --border: var(--COLOR_OUTLINE_LIGHT);
    --content-bg: var(--COLOR_BRAND_SUB_4_LIGHT);
}

body {
    font-family: 'Open Sans', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-narrow {
    max-width: 800px;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-small, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--light);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--light);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--COLOR_BRAND_SUB_3);
    border-color: var(--COLOR_BRAND_SUB_3);
    color: var(--light);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    background-color: var(--primary);
    color: var(--light);
    border: none;
}

.btn-small:hover {
    background-color: var(--secondary);
    color: var(--light);
}

/* Header */
body > header {
    background-color: var(--light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.main-logo {
    max-height: 45px;
    width: auto;
}

.header-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo-full {
    height: 80px;
    width: auto;
}

.header-logo-circle {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: none;
}

.header-logo-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 2px;
    display: none;
}

/* Homepage: show simplified logo, hide full logo */
body.home .header-logo-full {
    display: none;
}

body.home .header-logo-circle,
body.home .header-logo-text {
    display: block;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 10px;
}

.site-title span {
    color: var(--accent);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    align-items: center;
}

nav li {
    margin: 0 15px;
    position: relative;
}

nav a {
    color: var(--dark);
    font-weight: 600;
    padding: 8px 0;
}

nav a:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 0.7em;
    margin-left: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
}

/* Hero Section */
.hero {
    background: var(--light);
    color: var(--dark);
    padding: 80px 0 0 0;
    text-align: center;
}

.hero h1 {
    color: var(--light);
    font-size: 3rem;
    margin-bottom: 0.5em;
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero .tagline {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1.5em;
}

.hero .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background-color: var(--light);
    color: var(--primary);
    border-color: var(--light);
}

.hero .btn-primary:hover {
    background-color: transparent;
    color: var(--light);
}

.hero .btn-secondary {
    background-color: transparent;
    border-color: var(--light);
}

.hero .btn-secondary:hover {
    background-color: var(--light);
    color: var(--primary);
}

/* Main Content Layout */
main {
    padding: 80px 0 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.main-content {
    min-width: 0;
}

/* Featured Article */
.featured-article {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.featured-article--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-article .article-image,
.featured-article .featured-image {
    display: block;
    width: 100%;
}

.featured-article .article-image img,
.featured-article .featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.featured-article--two-col .featured-image img {
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.featured-article .article-content {
    padding: 30px;
}

.featured-article--two-col .article-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .featured-article--two-col {
        grid-template-columns: 1fr;
    }

    .featured-article--two-col .article-content {
        order: 1;
    }

    .featured-article--two-col .featured-image {
        order: 2;
    }
}

.featured-article .article-meta {
    font-size: 0.85rem;
    color: var(--COLOR_TEXT_SECONDARY);
    margin-bottom: 10px;
}

.featured-article h2 {
    margin-bottom: 15px;
}

.featured-article h2 a {
    color: var(--dark);
}

.featured-article h2 a:hover {
    color: var(--primary);
}

.featured-article .article-excerpt {
    color: var(--COLOR_TEXT_SECONDARY);
    margin-bottom: 20px;
}

.article-label {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 10px;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.article-card .card-image {
    display: block;
    width: 100%;
}

.article-card .card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.article-card .card-content {
    padding: 20px;
}

.article-card .article-meta {
    font-size: 0.8rem;
    color: var(--COLOR_TEXT_SECONDARY);
    margin-bottom: 8px;
}

.article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.article-card h3 a {
    color: var(--dark);
}

.article-card h3 a:hover {
    color: var(--primary);
}

.article-card .card-excerpt {
    font-size: 0.9rem;
    color: var(--COLOR_TEXT_SECONDARY);
    line-height: 1.5;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
}

.widget h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

/* Subscribe Widget */
.subscribe-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

.subscribe-widget h3 {
    color: var(--light);
    border-bottom-color: rgba(255,255,255,0.3);
}

.subscribe-widget p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.subscribe-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.subscribe-form button {
    width: 100%;
}

.subscribe-widget .btn-primary {
    background: var(--light);
    color: var(--primary);
    border-color: var(--light);
}

.subscribe-widget .btn-primary:hover {
    background: transparent;
    color: var(--light);
}

/* Recent Issues Widget */
.issue-list {
    list-style: none;
}

.issue-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.issue-list li:last-child {
    border-bottom: none;
}

.issue-list a {
    display: block;
}

.issue-list .issue-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.issue-list .issue-date {
    font-size: 0.8rem;
    color: var(--COLOR_TEXT_SECONDARY);
}

/* Sponsor Tiles */
.sponsor-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sponsor-tile {
    background: var(--light);
    padding: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-tile img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--COLOR_TEXT_SECONDARY);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section (Homepage) */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-section .about-image img {
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-section .about-text h2 {
    margin-bottom: 20px;
}

.about-section .about-text p {
    color: var(--COLOR_TEXT_SECONDARY);
}

/* Article Page Styles */
.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-page .article-header {
    margin-bottom: 30px;
}

.article-page .article-meta {
    color: var(--COLOR_TEXT_SECONDARY);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.article-page .article-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.article-page .article-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.article-page .article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-page .article-body p {
    margin-bottom: 1.5em;
}

.article-page .article-body h2 {
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.article-page .article-body ul,
.article-page .article-body ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.article-page .article-body li {
    margin-bottom: 0.5em;
    list-style: disc;
}

/* Article Full (generated from markdown) */
.article-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-full .article-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.article-full .article-header h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--COLOR_BRAND_PRIMARY);
}

.article-full .article-header .article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--COLOR_TEXT_SECONDARY);
    font-size: 0.9rem;
}

.article-full .article-header .article-label {
    background: var(--COLOR_BRAND_PRIMARY);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-full .article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-full .article-body p {
    margin-bottom: 1.5em;
}

.article-full .article-body h2 {
    font-size: 1.5rem;
    margin-top: 2.5em;
    margin-bottom: 1em;
    color: var(--COLOR_BRAND_PRIMARY);
    border-bottom: 2px solid var(--COLOR_BRAND_PRIMARY);
    padding-bottom: 8px;
}

.article-full .article-body h3 {
    font-size: 1.25rem;
    margin-top: 2em;
    margin-bottom: 0.75em;
    color: var(--dark);
}

.article-full .article-body ul,
.article-full .article-body ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.article-full .article-body li {
    margin-bottom: 0.5em;
    list-style: disc;
}

.article-full .article-body ol li {
    list-style: decimal;
}

.article-full .article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
}

.article-full .article-body figure {
    margin: 2em 0;
    text-align: center;
}

.article-full .article-body figure img {
    margin-bottom: 0.5em;
}

.article-full .article-body figcaption {
    font-size: 0.9rem;
    color: var(--COLOR_TEXT_SECONDARY);
    font-style: italic;
}

.article-full .article-body blockquote {
    border-left: 4px solid var(--COLOR_BRAND_PRIMARY);
    padding-left: 20px;
    margin: 1.5em 0;
    font-style: italic;
    color: var(--COLOR_TEXT_SECONDARY);
}

.article-full .article-body hr {
    border: none;
    border-top: 2px solid var(--border);
    margin: 2em 0;
}

.article-full .article-body strong {
    color: var(--dark);
}

.article-full .article-body a {
    color: var(--COLOR_BRAND_PRIMARY);
    text-decoration: underline;
}

.article-full .article-body a:hover {
    color: var(--COLOR_BRAND_SECONDARY);
}

.article-full .article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

/* Archive Page */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.issue-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.issue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.issue-card .issue-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light-gray);
}

.issue-card .issue-info {
    padding: 20px;
}

.issue-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.issue-card h3 a {
    color: var(--dark);
}

.issue-card h3 a:hover {
    color: var(--primary);
}

.issue-card .issue-date {
    font-size: 0.85rem;
    color: var(--COLOR_TEXT_SECONDARY);
}

/* Sponsors Page */
.sponsor-tiers {
    display: grid;
    gap: 40px;
}

.sponsor-tier {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
}

.sponsor-tier h3 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.sponsor-tier.platinum h3 {
    color: #6b7280;
}

.sponsor-tier.gold h3 {
    color: #d97706;
}

.sponsor-tier.silver h3 {
    color: #9ca3af;
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.sponsor-logos img {
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--COLOR_BRAND_SUB_3) 100%);
    color: var(--light);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--light);
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta-section .btn-primary {
    background: var(--light);
    color: var(--accent);
    border-color: var(--light);
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--light);
}

/* Sponsor Carousel */
.sponsor-carousel-section {
    background-color: var(--light-gray);
    padding: 40px 0;
    text-align: center;
}

.sponsor-carousel-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.sponsor-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.sponsor-carousel::before,
.sponsor-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sponsor-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--light-gray) 0%, transparent 100%);
}

.sponsor-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--light-gray) 0%, transparent 100%);
}

.sponsor-carousel-track {
    display: flex;
    gap: 30px;
    animation: sponsorScroll 30s linear infinite;
    width: max-content;
}

.sponsor-carousel-track:hover {
    animation-play-state: paused;
}

.sponsor-carousel-section .sponsor-tile {
    background-color: var(--light);
    padding: 20px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--accent);
    min-width: 180px;
    max-width: 220px;
    height: 100px;
    flex-shrink: 0;
}

.sponsor-carousel-section .sponsor-tile img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

@keyframes sponsorScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--light);
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* About Page */
.about-hero {
    background: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.about-content {
    padding: 60px 0;
}

.about-content .container {
    max-width: 800px;
}

.about-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--COLOR_TEXT_SECONDARY);
    font-size: 1.1rem;
}

.about-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.about-content li {
    margin-bottom: 10px;
    list-style: disc;
    color: var(--COLOR_TEXT_SECONDARY);
}

/* Subscribe Page */
.subscribe-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
    padding: 80px 0;
    text-align: center;
}

.subscribe-hero h1 {
    color: var(--light);
}

.subscribe-form-large {
    max-width: 500px;
    margin: 40px auto 0;
}

.subscribe-form-large input[type="email"],
.subscribe-form-large input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.subscribe-form-large button {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.subscribe-benefits {
    padding: 60px 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--COLOR_TEXT_SECONDARY);
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Archive Page Styles */
.archive-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.archive-header {
    text-align: center;
    margin-bottom: 50px;
}

.archive-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.archive-header p {
    color: var(--COLOR_TEXT_SECONDARY);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.archive-year {
    margin-bottom: 50px;
}

.archive-year h2 {
    font-size: 1.75rem;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 20px;
}

.archive-articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 15px;
}

.archive-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 15px 20px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.archive-item:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.archive-item-content .article-label {
    margin-bottom: 8px;
}

.archive-item h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.archive-item h3 a {
    color: var(--dark);
}

.archive-item h3 a:hover {
    color: var(--accent);
}

/* Archive article page */
.archive-article .article-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.archive-article .article-footer .btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.archive-article .article-footer .btn-outline:hover {
    background-color: var(--accent);
    color: var(--light);
}

/* Issue Grid on Archive Page */
.issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.issue-card {
    display: block;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.issue-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.issue-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 8px 0;
}

.issue-card:hover h3 {
    color: var(--accent);
}

.issue-card .issue-article-count {
    font-size: 0.85rem;
    color: var(--COLOR_TEXT_SECONDARY);
    margin: 0;
}

/* Issue Page Styles */
.issue-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.issue-header {
    margin-bottom: 40px;
}

.issue-header h1 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.issue-header p a {
    font-size: 0.95rem;
}

.issue-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.issue-article-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 25px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.issue-article-item:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.issue-article-item .article-label {
    margin-bottom: 10px;
}

.issue-article-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.issue-article-item h3 a {
    color: var(--dark);
}

.issue-article-item h3 a:hover {
    color: var(--accent);
}

.issue-article-item .article-excerpt {
    font-size: 0.9rem;
    color: var(--COLOR_TEXT_SECONDARY);
    margin: 0;
    line-height: 1.6;
}

.no-articles {
    text-align: center;
    color: var(--COLOR_TEXT_SECONDARY);
    padding: 40px;
    font-style: italic;
}

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

    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .widget {
        flex: 1 1 300px;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-articles {
        grid-template-columns: 1fr;
    }

    .archive-header h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    header .main-nav-container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .hero {
        padding: 50px 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

/* GO POLL Styles */
.poll-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.poll-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.poll-option {
    position: relative;
    background: var(--light-gray);
    border: 2px solid var(--border);
    border-radius: 6px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.poll-option:hover:not(.poll-option--voted) {
    border-color: var(--accent);
    background: var(--content-bg);
}

.poll-option--voted {
    cursor: default;
}

.poll-option-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--content-bg);
    border-radius: 4px;
    transition: width 0.5s ease;
    z-index: 0;
}

.poll-option-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poll-option-label {
    font-size: 0.95rem;
    color: var(--dark);
}

.poll-option-percent {
    font-weight: 600;
    color: var(--accent);
    min-width: 50px;
    text-align: right;
}

.poll-total {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--COLOR_TEXT_SECONDARY);
}

.poll-loading {
    text-align: center;
    padding: 40px;
    color: var(--COLOR_TEXT_SECONDARY);
}

.poll-error {
    text-align: center;
    padding: 20px;
    color: var(--primary);
}
