/* Tech Affiliate Site Styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

/* Site Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover; background-position: center; background-repeat: no-repeat;
    opacity: 1.0;
    z-index: -2;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #aaddf3, #080808);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    margin-left: 24px;
}

.main-nav a:hover {
    color: #0040ff;
}

/* Dropdown Menu */
.main-nav .nav-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 24px;
}

.main-nav .nav-dropdown-trigger {
    margin-left: 0;
    cursor: pointer;
    padding-bottom: 15px;
    margin-bottom: -15px;
}

.main-nav .nav-dropdown-trigger::after {
    content: ' ▾';
    font-size: 0.75em;
}

.main-nav .nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    background: #2a2a2a;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
    padding-top: 15px;
}

.main-nav .nav-dropdown-content a {
    display: block;
    padding: 12px 16px;
    margin: 0 0 6px 0;
    color: #ffffff;
    font-size: 0.95rem;
    background: #3a3a3a;
    border-radius: 6px;
    text-align: left;
}

.main-nav .nav-dropdown-content a:last-child {
    margin-bottom: 0;
}

.main-nav .nav-dropdown-content a:hover {
    background: #4a4a4a;
    color: #ffffff;
}

.main-nav .nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

/* Hero */
.hero {
    padding: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 100%);
    color: var(--white);
    border-radius: var(--radius);
    margin: 24px 0;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius);
}

.hero-banner .hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px 48px;
    width: 100%;
}

.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    margin: 0;
}

.hero-title span {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 400px;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 24px;
    }

    .hero-title span {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.1rem;
    }
}

/* Categories */
.categories {
    margin: 48px 0;
}

.categories h2 {
    margin-bottom: 24px;
}

/* Default Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

/* Default Card Style */
.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.cat-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.cat-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.cat-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Style 1: Gradient Background */
.category-card.cat-gradient {
    background: linear-gradient(135deg, var(--cat-color) 0%, color-mix(in srgb, var(--cat-color) 70%, #000) 100%);
    border: none;
    color: white;
}

.category-card.cat-gradient .cat-name,
.category-card.cat-gradient .cat-count {
    color: white;
}

.category-card.cat-gradient .cat-count {
    opacity: 0.85;
}

.category-card.cat-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Style 2: Horizontal Pills */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--cat-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}

.category-pill .cat-icon {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.category-pill .cat-name {
    font-weight: 600;
    color: var(--cat-color);
    margin-bottom: 0;
}

.category-pill .cat-count {
    background: var(--cat-color);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-pill:hover {
    background: var(--cat-color);
    transform: scale(1.05);
}

.category-pill:hover .cat-name {
    color: white;
}

/* Style 3: Image Thumbnails */
.category-card.cat-image {
    position: relative;
    min-height: 140px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: none;
    justify-content: center;
    overflow: hidden;
}

.category-card.cat-image .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.category-card.cat-image .cat-icon,
.category-card.cat-image .cat-name,
.category-card.cat-image .cat-count {
    position: relative;
    z-index: 1;
    color: white;
}

.category-card.cat-image .cat-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.category-card.cat-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Style 4: Coloured Icon Cards */
.category-card.cat-colored {
    background: white;
    border: none;
    box-shadow: var(--shadow);
    padding: 24px;
}

.category-card.cat-colored .cat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--cat-color) 15%, transparent);
    border-radius: 12px;
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.category-card.cat-colored .cat-name {
    color: var(--cat-color);
}

.category-card.cat-colored .cat-count {
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.category-card.cat-colored:hover {
    border: none;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--cat-color) 30%, transparent);
}

/* Style 5: Minimal Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.category-tag-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.category-tag-btn .cat-icon {
    font-size: 1rem;
    margin-bottom: 0;
}

.category-tag-btn .cat-name {
    color: var(--text);
    margin-bottom: 0;
    font-weight: 500;
}

.category-tag-btn .cat-count {
    color: var(--text-light);
    font-size: 0.8rem;
}

.category-tag-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.category-tag-btn:hover .cat-name,
.category-tag-btn:hover .cat-count,
.category-tag-btn:hover .cat-icon {
    color: white;
}

/* Style 6: Neon Glow */
.category-card.cat-neon {
    background: #0a0a0a;
    border: 1px solid var(--cat-color);
    box-shadow: 0 0 15px color-mix(in srgb, var(--cat-color) 40%, transparent),
                inset 0 0 15px color-mix(in srgb, var(--cat-color) 10%, transparent);
}

.category-card.cat-neon .cat-icon {
    font-size: 2.25rem;
    filter: drop-shadow(0 0 8px var(--cat-color));
}

.category-card.cat-neon .cat-name {
    color: var(--cat-color);
    text-shadow: 0 0 10px var(--cat-color);
    font-weight: 700;
}

.category-card.cat-neon .cat-count {
    color: rgba(255,255,255,0.7);
}

.category-card.cat-neon:hover {
    border-color: var(--cat-color);
    box-shadow: 0 0 30px var(--cat-color),
                0 0 60px color-mix(in srgb, var(--cat-color) 50%, transparent),
                inset 0 0 20px color-mix(in srgb, var(--cat-color) 20%, transparent);
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    .category-pills {
        justify-content: flex-start;
    }

    .category-pill {
        padding: 10px 18px;
    }
}

/* Product Grid */
.products {
    margin: 48px 0;
}

.products h2 {
    margin-bottom: 24px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: var(--white);
    padding: 20px;
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text);
}

.product-info .brand {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.category-tag {
    display: inline-block;
    font-size: 0.75rem;
    background: var(--bg);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
}

.excerpt {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* Product Page */
.product-page {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    margin: 24px 0;
}

.breadcrumb {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

.product-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-details h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.product-details .brand {
    color: var(--text-light);
    margin-bottom: 16px;
}

.description {
    margin: 24px 0;
    line-height: 1.8;
}

.features h3 {
    margin-bottom: 12px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.features li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

@media (max-width: 600px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

.pros, .cons {
    padding: 16px;
    border-radius: 8px;
}

.pros {
    background: #ecfdf5;
}

.cons {
    background: #fef3c7;
}

.pros h4, .cons h4 {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.pros li, .cons li {
    padding: 4px 0;
}

.cta {
    margin: 32px 0 16px;
}

.buy-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.buy-button:hover {
    background: var(--primary-dark);
}

.disclosure-small {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Category Page */
.category-page {
    margin: 24px 0;
}

.category-page h1 {
    margin-bottom: 8px;
}

.category-page .cat-count {
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Disclosure */
.disclosure {
    background: #fefce8;
    border: 1px solid #fef08a;
    border-radius: var(--radius);
    padding: 16px;
    margin: 48px 0;
    font-size: 0.875rem;
    color: var(--text);
}

/* Footer */
.site-footer {
    background: var(--secondary);
    color: var(--white);
    padding: 40px 0;
    margin-top: 60px;
}

.site-footer p {
    opacity: 0.8;
    font-size: 0.875rem;
}

.disclosure-footer {
    margin-top: 16px;
    font-size: 0.75rem !important;
    opacity: 0.6 !important;
}

/* About Page */
/* About Banner */
.about-banner {
    position: relative;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    margin: 24px 0 0 0;
    color: var(--white);
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius);
}

.about-banner .hero-content {
    position: relative;
    z-index: 1;
}

.about-banner .tagline {
    color: rgba(255,255,255,0.95);
}

.about-page {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    margin: 24px 0;
    box-shadow: var(--shadow);
}

.about-banner + .about-page {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.about-page h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--secondary);
}

.about-content {
    line-height: 1.8;
    color: var(--text);
}

.about-content h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--secondary);
}

.about-content h3 {
    font-size: 1.25rem;
    margin: 24px 0 12px;
    color: var(--secondary);
}

.about-content p {
    margin-bottom: 16px;
}

.about-content ul, .about-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.about-content li {
    margin-bottom: 8px;
}

.about-content strong {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .about-page {
        padding: 24px;
    }
    .about-page h1 {
        font-size: 1.5rem;
    }
}

/* Latest Article Section (Homepage) */
.latest-article {
    margin: 32px 0;
}

.latest-article h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* Thumbnail Style - Image on left */
.article-card-featured {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.article-card-featured.has-image {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.article-card-featured .article-thumb {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.article-card-featured .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-featured .article-card-content {
    flex: 1;
}

.article-card-featured .article-date {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.article-card-featured h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.article-card-featured h3 a {
    color: var(--secondary);
    text-decoration: none;
}

.article-card-featured h3 a:hover {
    color: var(--primary);
}

.article-card-featured p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-card-featured .read-more {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.article-card-featured .read-more:hover {
    text-decoration: underline;
}

/* Hero Style - images right, text overlay left */
.article-hero-card {
    display: block;
    position: relative;
    text-decoration: none;
    background: #1a1a1a;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 280px;
}

.article-hero-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.article-hero-images {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 0;
    height: 100%;
    width: 75%;
}

.article-hero-img {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(to right, #1a1a1a 0%, #1a1a1a 40%, transparent 100%);
    z-index: 1;
}

.article-hero-card .article-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    z-index: 2;
}

.article-hero-card .article-date {
    display: inline-block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.article-hero-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.article-hero-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-hero-card .read-more {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 20px;
    background: var(--primary);
    border-radius: 6px;
    transition: background 0.2s;
    width: fit-content;
}

.article-hero-card:hover .read-more {
    background: #c9302c;
}

/* Responsive */
@media (max-width: 768px) {
    .article-card-featured.has-image {
        flex-direction: column;
    }

    .article-card-featured .article-thumb {
        width: 100%;
        height: 200px;
    }

    .article-hero-card {
        height: 400px;
    }

    .article-hero-images {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }

    .article-hero-overlay {
        width: 100%;
        height: 60%;
        top: 0;
        bottom: auto;
        background: linear-gradient(to bottom, #1a1a1a 0%, #1a1a1a 50%, transparent 100%);
    }

    .article-hero-card .article-hero-content {
        width: 100%;
        height: auto;
        bottom: auto;
        padding: 24px;
    }

    .article-hero-card h3 {
        font-size: 1.25rem;
    }

    .article-hero-card p {
        font-size: 0.9rem;
    }
}

/* Article Page */
.article-page {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    margin: 24px 0;
    box-shadow: var(--shadow);
}

.article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.article-header h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--secondary);
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-author {
    font-weight: 500;
}

.article-content {
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--text);
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 36px 0 16px;
    color: var(--secondary);
}

.article-content h3 {
    font-size: 1.25rem;
    margin: 28px 0 12px;
    color: var(--secondary);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 28px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.article-content a {
    color: var(--primary);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 24px 0;
}

.article-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-back {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.btn-back:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-page {
        padding: 24px;
    }
    .article-header h1 {
        font-size: 1.75rem;
    }
    .article-content {
        font-size: 1rem;
    }
}

/* Articles Listing Page */
.articles-page {

}

.articles-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 100%);
    color: var(--white);
    border-radius: var(--radius);
}

.articles-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.articles-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-list-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}

.article-list-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.article-list-date {
    font-size: 0.875rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.article-list-author {
    font-weight: 500;
}

.article-list-item h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-list-item h2 a {
    color: var(--secondary);
    text-decoration: none;
}

.article-list-item h2 a:hover {
    color: var(--primary);
}

.article-list-item p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-list-item .read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.article-list-item .read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .articles-header {
        padding: 30px 16px;
    }
    .articles-header h1 {
        font-size: 1.75rem;
    }
    .article-list-item {
        padding: 20px;
    }
    .article-list-item h2 {
        font-size: 1.2rem;
    }
}
