/* ========================================
   JewelryDisplayPro - Shared Styles
   ======================================== */

:root {
    --primary: #B76E79;
    --primary-light: #D4A5A5;
    --primary-dark: #8B4A52;
    --gold: #C9A962;
    --gold-light: #E8D5A3;
    --dark: #1a1a2e;
    --gray-900: #2d2d44;
    --gray-700: #4a4a5e;
    --gray-500: #6b6b80;
    --gray-300: #a0a0b0;
    --gray-100: #f5f5f7;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav>ul>li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown>a::after {
    content: '▾';
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover>a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-menu .menu-title {
    padding: 8px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dropdown-menu hr {
    margin: 10px 20px;
    border: none;
    border-top: 1px solid var(--gray-100);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
}

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

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--gray-500);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   About Page
   ======================================== */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.stats-section {
    padding: 60px 0;
    background: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--gray-300);
    font-size: 0.95rem;
}

.why-choose {
    padding: 80px 0;
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

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

.reason-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--gray-100);
    transition: all 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 1.5rem;
    color: white;
}

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

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-wrapper>p {
    color: var(--gray-500);
    margin-bottom: 30px;
}

.contact-form {
    background: var(--gray-100);
    padding: 35px;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.form-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 15px;
}

.info-card.highlight {
    background: var(--gradient);
    color: white;
}

.info-card.highlight h3,
.info-card.highlight p {
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list i {
    color: var(--primary);
}

.faq-section {
    padding: 60px 0 80px;
    background: var(--gray-100);
}

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

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

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
}

.faq-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ========================================
   Blog Page
   ======================================== */
.category-filter {
    padding: 30px 0;
    background: white;
    border-bottom: 1px solid var(--gray-100);
}

.filter-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    border: none;
    background: var(--gray-100);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: white;
}

.featured-article {
    padding: 50px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-content {
    padding: 40px 40px 40px 0;
}

.featured-content h2 {
    font-size: 1.8rem;
    margin: 15px 0;
    line-height: 1.3;
}

.featured-content p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.article-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.article-meta i {
    margin-right: 5px;
}

.blog-section {
    padding: 50px 0 80px;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin: 12px 0;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

.newsletter-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.newsletter-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-box h2 {
    margin-bottom: 10px;
}

.newsletter-box p {
    color: var(--gray-500);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
}

/* ========================================
   Suppliers Page
   ======================================== */
.supplier-header {
    padding-bottom: 40px;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.search-box button {
    padding: 15px 25px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
}

.filter-section {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid var(--gray-100);
}

.filter-bar {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 500;
    color: var(--gray-700);
}

.filter-group select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
}

.suppliers-section {
    padding: 50px 0 80px;
}

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

.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.supplier-card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: all 0.3s;
}

.supplier-card:hover {
    box-shadow: var(--shadow-lg);
}

.supplier-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold-light);
}

.supplier-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.supplier-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 0;
    border: none;
    background: none;
    position: static;
}

.supplier-logo {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1.5rem;
}

.supplier-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.supplier-info .location {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.supplier-info .location i {
    margin-right: 5px;
}

.rating {
    color: var(--gold);
    font-size: 0.85rem;
}

.rating span {
    color: var(--gray-500);
    margin-left: 5px;
}

.supplier-body {
    margin-bottom: 20px;
}

.supplier-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.supplier-stats {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-100);
}

.supplier-stats .stat {
    text-align: center;
}

.supplier-stats strong {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 3px;
}

.supplier-stats span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.85rem;
}

.supplier-footer {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    padding: 10px 18px;
    border: 1px solid var(--gray-300);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.become-supplier {
    padding: 60px 0;
    background: var(--gray-100);
}

.cta-box {
    background: var(--gradient);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-box h2,
.cta-box p {
    color: white;
}

.cta-box h2 {
    margin-bottom: 10px;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.1;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    color: var(--gray-300);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 992px) {

    .about-grid,
    .contact-grid,
    .featured-card {
        grid-template-columns: 1fr;
    }

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

    .suppliers-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

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

    .stats-grid,
    .reasons-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ========================================
   Category Pages
   ======================================== */
.category-header .category-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-header .category-badge i {
    font-size: 2rem;
    color: white;
}

.category-intro {
    padding: 50px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 15px;
}

.intro-content p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.articles-section {
    padding: 50px 0 80px;
}

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

.section-header h2 {
    font-size: 1.5rem;
}

.sort-options select {
    padding: 10px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
}

.articles-grid-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.article-card-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
}

.article-card-large .article-image {
    position: relative;
}

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

.featured-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-card-large .article-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-card-large h3 {
    font-size: 1.5rem;
    margin: 12px 0;
    line-height: 1.3;
}

.article-card-large p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.article-card-medium {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.article-card-medium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-card-medium .article-image {
    height: 180px;
    overflow: hidden;
}

.article-card-medium .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card-medium:hover .article-image img {
    transform: scale(1.05);
}

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

.article-card-medium h3 {
    font-size: 1.1rem;
    margin: 10px 0;
    line-height: 1.4;
}

.article-card-medium p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.related-categories {
    padding: 60px 0;
    background: var(--gray-100);
}

.related-categories h2 {
    text-align: center;
    margin-bottom: 40px;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.category-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* News Page Specific */
.news-highlights {
    padding: 40px 0;
}

.highlight-banner {
    background: linear-gradient(135deg, var(--dark), var(--gray-900));
    border-radius: 20px;
    padding: 40px;
}

.highlight-content {
    max-width: 700px;
}

.highlight-label {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-content h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.highlight-content p {
    color: var(--gray-300);
    margin-bottom: 20px;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card {
    display: flex;
    gap: 25px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.news-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.news-date {
    text-align: center;
    min-width: 60px;
}

.news-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.news-date .month {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-content p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .articles-grid-large {
        grid-template-columns: 1fr;
    }

    .article-card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .category-cards {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
        gap: 15px;
    }

    .news-date {
        display: flex;
        gap: 8px;
        align-items: baseline;
    }
}