body {
    background: #040816;
    color: #f5efe5;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-image:
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 4px 4px;
}

/* HERO SECTION - Override for this page */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    background:
        radial-gradient(circle at 75% 50%,
            rgba(216,162,76,0.08),
            transparent 40%),
        radial-gradient(circle at 70% 30%,
            rgba(220,168,91,0.05),
            transparent 35%);
}

/* ARTICLES SECTION */
.articles-section {
    padding: 120px 42px 30px 42px;
    max-width: 1200px;
    margin: 0 auto;
}

.articles-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    line-height: 1.1;
    color: #d8a24c;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-align: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.article-card-link {
    text-decoration: none;
    display: block;
}

.article-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
}

.article-card-link:hover .article-card {
    transform: translateY(-8px);
    border-color: rgba(216,162,76,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.article-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(216,162,76,0.1), rgba(220,168,91,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-placeholder {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(216,162,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8a24c;
    font-size: 24px;
}

.article-content {
    padding: 32px;
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(216,162,76,0.15);
    color: #d8a24c;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #f5efe5;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.article-excerpt {
    color: rgba(245,239,229,0.7);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.article-link {
    color: #d8a24c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: #f3be69;
    transform: translateX(4px);
    display: inline-block;
}

/* CTA SECTION */
.cta-section {
    padding: 150px 42px;
    background:
        radial-gradient(circle at 50% 50%,
            rgba(216,162,76,0.06),
            transparent 50%);
    text-align: center;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    line-height: 1.1;
    color: #f5efe5;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-description {
    color: rgba(245,239,229,0.75);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.primary-button.large {
    padding: 18px 40px;
    font-size: 18px;
}

.secondary-button {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid #d8a24c;
    color: #d8a24c;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background: #d8a24c;
    color: #040816;
}

.loading, .no-articles, .error {
    text-align: center;
    color: rgba(245,239,229,0.5);
    font-size: 18px;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* ARTICLE PAGE STYLES */
.article-section {
    padding: 120px 42px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.article-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.article-header .article-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(216,162,76,0.15);
    color: #d8a24c;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.article-full-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    line-height: 1.1;
    color: #f5efe5;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.article-date {
    color: rgba(245,239,229,0.5);
    font-size: 16px;
}

.article-full-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
}

.article-full-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-body {
    color: rgba(245,239,229,0.85);
    line-height: 1.9;
    font-size: 18px;
}

.article-body h1,
.article-body h2,
.article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #f5efe5;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body h1 {
    font-size: 48px;
}

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

.article-body h3 {
    font-size: 28px;
}

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

.article-body a {
    color: #d8a24c;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: #f3be69;
}

.article-body blockquote {
    border-left: 3px solid #d8a24c;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: rgba(245,239,229,0.9);
}

.article-back {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* SIDEBAR STYLES */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 24px;
}

.sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #d8a24c;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: rgba(245,239,229,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.sidebar-links a:hover {
    color: #d8a24c;
    padding-left: 8px;
}

.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #f5efe5;
    font-size: 14px;
}

.search-form input::placeholder {
    color: rgba(245,239,229,0.4);
}

.search-form input:focus {
    outline: none;
    border-color: #d8a24c;
}

.search-form button {
    padding: 10px 16px;
    background: #d8a24c;
    border: none;
    border-radius: 6px;
    color: #040816;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: #f3be69;
}

/* COMMENTS SECTION */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.comments-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #f5efe5;
    margin-bottom: 32px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.comment-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-author {
    font-weight: 600;
    color: #d8a24c;
    font-size: 16px;
}

.comment-date {
    color: rgba(245,239,229,0.5);
    font-size: 14px;
}

.comment-text {
    color: rgba(245,239,229,0.8);
    line-height: 1.6;
    margin: 0;
}

.loading-comments,
.no-comments,
.error-comments {
    color: rgba(245,239,229,0.5);
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

/* COMMENT FORM */
.comment-form-container {
    background: linear-gradient(135deg, rgba(216,162,76,0.05), rgba(220,168,91,0.02));
    border: 1px solid rgba(216,162,76,0.1);
    border-radius: 12px;
    padding: 32px;
}

.comment-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #d8a24c;
    margin-bottom: 24px;
}

.comment-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.comment-message.success {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.comment-message.error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #e57373;
}

.auth-message {
    padding: 20px;
    background: rgba(216,162,76,0.05);
    border: 1px solid rgba(216,162,76,0.1);
    border-radius: 8px;
    text-align: center;
    color: rgba(245,239,229,0.7);
}

.auth-message a {
    color: #d8a24c;
    text-decoration: none;
    font-weight: 600;
}

.auth-message a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(245,239,229,0.8);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #f5efe5;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245,239,229,0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d8a24c;
    background: rgba(255,255,255,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-comment {
    padding: 14px 32px;
    background: #d8a24c;
    border: none;
    border-radius: 8px;
    color: #040816;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-comment:hover {
    background: #f3be69;
    transform: translateY(-2px);
}

.submit-comment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .articles-section {
        padding: 80px 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-content {
        padding: 24px;
    }

    .article-title {
        font-size: 20px;
    }

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

    .cta-section {
        padding: 100px 24px;
    }

    .cta-title {
        font-size: 40px;
    }

    .cta-description {
        font-size: 16px;
    }

    .primary-button.large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .article-section {
        padding: 80px 24px;
    }

    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-full-title {
        font-size: 36px;
    }

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

    .article-body h1 {
        font-size: 32px;
    }

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

    .article-body h3 {
        font-size: 22px;
    }

    .social-share {
        flex-wrap: wrap;
    }
}
