/*
Theme Name: Juddi Developer
Theme URI: https://juddi.org
Author: Juddi
Author URI: https://juddi.org
Description: Ressources et guides pour développeurs. Développement web, création de sites, tutoriels techniques et outils business pour professionnels du digital.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: juddi-developer
Tags: blog, education, developer, custom-logo, custom-menu, featured-images, light-mode

Juddi Developer - Le code au service de vos projets.
*/

/* ================================
   DESIGN TOKENS
   ================================ */
:root {
    /* Light Theme Colors */
    --jd-bg-primary: #ffffff;
    --jd-bg-secondary: #f8fafc;
    --jd-bg-tertiary: #f1f5f9;
    --jd-bg-card: #ffffff;
    
    /* Primary Colors - Blue Tech */
    --jd-primary: #2563eb;
    --jd-primary-dark: #1d4ed8;
    --jd-primary-light: #3b82f6;
    
    /* Accent Colors */
    --jd-accent-cyan: #0891b2;
    --jd-accent-emerald: #059669;
    --jd-accent-amber: #d97706;
    --jd-accent-violet: #7c3aed;
    
    /* Text Colors */
    --jd-text-primary: #0f172a;
    --jd-text-secondary: #475569;
    --jd-text-muted: #94a3b8;
    
    /* Borders & Surfaces */
    --jd-border: #e2e8f0;
    --jd-border-light: #f1f5f9;
    --jd-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --jd-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --jd-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --jd-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Gradients */
    --jd-gradient-primary: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    --jd-gradient-hero: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    
    /* Typography */
    --jd-font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --jd-font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --jd-font-mono: 'Fira Code', 'Monaco', 'Consolas', monospace;
    
    /* Spacing */
    --jd-container: 1140px;
    --jd-radius-sm: 6px;
    --jd-radius-md: 10px;
    --jd-radius-lg: 14px;
    --jd-radius-xl: 20px;
}

/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--jd-font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--jd-text-primary);
    background: var(--jd-bg-primary);
}

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

a {
    color: var(--jd-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--jd-font-sans);
    font-weight: 600;
    line-height: 1.3;
    color: var(--jd-text-primary);
}

p {
    margin: 0;
}

/* Code Style */
code, pre {
    font-family: var(--jd-font-mono);
    font-size: 0.9em;
}

code {
    background: var(--jd-bg-tertiary);
    padding: 2px 6px;
    border-radius: var(--jd-radius-sm);
    color: var(--jd-primary-dark);
}

pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: var(--jd-radius-md);
    overflow-x: auto;
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* ================================
   LAYOUT
   ================================ */
.jd-container {
    width: 100%;
    max-width: var(--jd-container);
    margin: 0 auto;
    padding: 0 24px;
}

.jd-section {
    padding: 80px 0;
}

.jd-section--alt {
    background: var(--jd-bg-secondary);
}

/* ================================
   BUTTONS
   ================================ */
.jd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--jd-font-sans);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--jd-radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.jd-btn--primary {
    background: var(--jd-gradient-primary);
    color: #fff;
    box-shadow: var(--jd-shadow-md);
}

.jd-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--jd-shadow-lg);
    color: #fff;
}

.jd-btn--secondary {
    background: var(--jd-bg-primary);
    color: var(--jd-text-primary);
    border: 2px solid var(--jd-border);
}

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

/* ================================
   CARDS
   ================================ */
.jd-card {
    background: var(--jd-bg-card);
    border: 1px solid var(--jd-border);
    border-radius: var(--jd-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.jd-card:hover {
    border-color: var(--jd-primary);
    box-shadow: var(--jd-shadow-xl);
    transform: translateY(-4px);
}

.jd-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.jd-card__content {
    padding: 24px;
}

.jd-card__category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 12px;
}

.jd-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--jd-text-primary);
}

.jd-card__excerpt {
    font-size: 15px;
    color: var(--jd-text-secondary);
    line-height: 1.6;
}

.jd-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--jd-border-light);
    font-size: 13px;
    color: var(--jd-text-muted);
}

/* ================================
   HEADER STYLES
   ================================ */
.jd-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--jd-border);
}

.jd-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.jd-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--jd-font-sans);
    font-size: 22px;
    font-weight: 700;
    color: var(--jd-text-primary);
    text-decoration: none;
}

.jd-logo:hover {
    color: var(--jd-text-primary);
}

.jd-logo__icon {
    width: 38px;
    height: 38px;
    background: var(--jd-gradient-primary);
    border-radius: var(--jd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.jd-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jd-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: var(--jd-font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--jd-text-secondary);
    text-decoration: none;
    border-radius: var(--jd-radius-md);
    transition: all 0.2s ease;
}

.jd-nav__link:hover {
    background: var(--jd-bg-secondary);
    color: var(--jd-primary);
}

.jd-nav__link--active {
    background: var(--jd-bg-tertiary);
    color: var(--jd-primary);
}

/* Mobile Menu */
.jd-menu-toggle {
    display: none;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ================================
   FOOTER STYLES
   ================================ */
.jd-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 64px 0 32px;
}

.jd-footer a {
    color: #94a3b8;
}

.jd-footer a:hover {
    color: #fff;
}

.jd-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.jd-footer__brand {
    max-width: 260px;
}

.jd-footer__brand .jd-logo {
    color: #fff;
    margin-bottom: 16px;
}

.jd-footer__tagline {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.jd-footer__title {
    font-family: var(--jd-font-sans);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.jd-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jd-footer__links li {
    margin-bottom: 12px;
}

.jd-footer__links a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jd-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #1e293b;
    font-size: 13px;
    color: #64748b;
}

/* ================================
   PAGINATION
   ================================ */
.jd-pagination {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--jd-border);
}

.jd-pagination__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jd-pagination__page,
.jd-pagination__prev,
.jd-pagination__next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--jd-text-secondary);
    background: var(--jd-bg-primary);
    border: 1px solid var(--jd-border);
    border-radius: var(--jd-radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.jd-pagination__page:hover,
.jd-pagination__prev:hover,
.jd-pagination__next:hover {
    border-color: var(--jd-primary);
    color: var(--jd-primary);
}

.jd-pagination__page--current {
    background: var(--jd-primary);
    border-color: var(--jd-primary);
    color: #fff;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .jd-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --jd-container: 100%;
    }
    
    .jd-section {
        padding: 48px 0;
    }
    
    .jd-nav {
        display: none;
    }
    
    .jd-menu-toggle {
        display: block;
    }
    
    .jd-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .jd-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */
.jd-text-gradient {
    background: var(--jd-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jd-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================
   HERO SECTION
   ================================ */
.jd-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.jd-hero__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}

.jd-hero__glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.jd-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.jd-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 100px;
    margin-bottom: 20px;
}

.jd-hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--jd-primary);
    border-radius: 50%;
}

.jd-hero__badge-text {
    font-family: var(--jd-font-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--jd-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.jd-hero__title {
    font-family: var(--jd-font-sans);
    font-size: 48px;
    font-weight: 700;
    color: var(--jd-text-primary);
    line-height: 1.15;
    margin: 0 0 20px 0;
}

.jd-hero__subtitle {
    font-size: 18px;
    color: var(--jd-text-secondary);
    line-height: 1.7;
    margin: 0 0 32px 0;
    max-width: 480px;
}

.jd-hero__cta {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.jd-hero__stats {
    display: flex;
    gap: 32px;
}

.jd-hero__stat-value {
    display: block;
    font-family: var(--jd-font-sans);
    font-size: 28px;
    font-weight: 700;
}

.jd-hero__stat-label {
    font-size: 13px;
    color: var(--jd-text-muted);
}

/* Hero Visual - Code Editor */
.jd-code-editor {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.jd-code-editor__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #0f172a;
    border-bottom: 1px solid #334155;
}

.jd-code-editor__dots {
    display: flex;
    gap: 8px;
}

.jd-code-editor__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.jd-code-editor__dot--red { background: #ef4444; }
.jd-code-editor__dot--yellow { background: #f59e0b; }
.jd-code-editor__dot--green { background: #22c55e; }

.jd-code-editor__filename {
    font-family: var(--jd-font-mono);
    font-size: 12px;
    color: #64748b;
}

.jd-code-editor__content {
    padding: 20px;
    font-family: var(--jd-font-mono);
    font-size: 13px;
    line-height: 1.8;
}

/* Floating Badge */
.jd-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.jd-floating-badge__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jd-floating-badge__title {
    font-family: var(--jd-font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--jd-text-primary);
}

.jd-floating-badge__text {
    font-size: 12px;
    color: var(--jd-text-secondary);
}

/* ================================
   FEATURED SECTION
   ================================ */
.jd-featured {
    padding: 80px 0;
    background: var(--jd-bg-secondary);
}

.jd-featured__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.jd-featured__main {
    position: relative;
    border-radius: var(--jd-radius-xl);
    overflow: hidden;
    min-height: 420px;
}

.jd-featured__main-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jd-featured__main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
}

.jd-featured__main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: #fff;
}

.jd-featured__main-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.jd-featured__main-title {
    font-family: var(--jd-font-sans);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.jd-featured__main-excerpt {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.jd-featured__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jd-featured__item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--jd-bg-card);
    border: 1px solid var(--jd-border);
    border-radius: var(--jd-radius-lg);
    text-decoration: none;
    transition: all 0.2s ease;
}

.jd-featured__item:hover {
    border-color: var(--jd-primary);
    box-shadow: var(--jd-shadow-md);
}

.jd-featured__item-image {
    width: 100px;
    height: 80px;
    border-radius: var(--jd-radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.jd-featured__item-content {
    flex: 1;
    min-width: 0;
}

.jd-featured__item-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.jd-featured__item-title {
    font-family: var(--jd-font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--jd-text-primary);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================================
   CATEGORIES GRID
   ================================ */
.jd-categories {
    padding: 80px 0;
    background: var(--jd-bg-primary);
}

.jd-categories__header {
    text-align: center;
    margin-bottom: 48px;
}

.jd-categories__title {
    font-family: var(--jd-font-sans);
    font-size: 36px;
    font-weight: 700;
    color: var(--jd-text-primary);
    margin: 0 0 12px 0;
}

.jd-categories__subtitle {
    font-size: 18px;
    color: var(--jd-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.jd-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.jd-category-card {
    display: block;
    background: var(--jd-bg-card);
    border: 1px solid var(--jd-border);
    border-radius: var(--jd-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jd-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--jd-shadow-xl);
}

.jd-category-card__image {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.jd-category-card__content {
    padding: 24px;
}

.jd-category-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.jd-category-card__title {
    font-family: var(--jd-font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--jd-text-primary);
    margin: 0 0 8px 0;
}

.jd-category-card__desc {
    font-size: 14px;
    color: var(--jd-text-secondary);
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.jd-category-card__count {
    font-size: 13px;
    font-weight: 500;
}

/* ================================
   NEWSLETTER SECTION
   ================================ */
.jd-newsletter {
    padding: 80px 0;
    background: var(--jd-gradient-primary);
}

.jd-newsletter__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.jd-newsletter__icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.jd-newsletter__title {
    font-family: var(--jd-font-sans);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.jd-newsletter__text {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.jd-newsletter__form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto 24px;
}

.jd-newsletter__input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: var(--jd-radius-md);
    font-size: 15px;
    color: var(--jd-text-primary);
    outline: none;
}

.jd-newsletter__input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.jd-newsletter__submit {
    padding: 14px 24px;
    background: #0f172a;
    color: #fff;
    font-family: var(--jd-font-sans);
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: var(--jd-radius-md);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.jd-newsletter__submit:hover {
    background: #1e293b;
}

.jd-newsletter__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.jd-newsletter__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ================================
   LATEST ARTICLES SECTION
   ================================ */
.jd-latest {
    padding: 80px 0;
    background: var(--jd-bg-secondary);
}

.jd-latest__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.jd-latest__title {
    font-family: var(--jd-font-sans);
    font-size: 32px;
    font-weight: 700;
    color: var(--jd-text-primary);
    margin: 0 0 8px 0;
}

.jd-latest__subtitle {
    font-size: 16px;
    color: var(--jd-text-secondary);
    margin: 0;
}

.jd-latest__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ================================
   RESPONSIVE - Refactored
   ================================ */
@media (max-width: 1024px) {
    .jd-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .jd-hero__visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .jd-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jd-featured__grid {
        grid-template-columns: 1fr;
    }
    
    .jd-featured__sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .jd-featured__item {
        flex: 1 1 calc(50% - 10px);
    }
    
    .jd-latest__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .jd-hero {
        padding: 80px 0 48px;
    }
    
    .jd-hero__title {
        font-size: 36px;
    }
    
    .jd-hero__stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .jd-hero__visual {
        display: none;
    }
    
    .jd-categories__grid {
        grid-template-columns: 1fr;
    }
    
    .jd-featured__item {
        flex: 1 1 100%;
    }
    
    .jd-latest__grid {
        grid-template-columns: 1fr;
    }
    
    .jd-latest__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .jd-newsletter__form {
        flex-direction: column;
    }
    
    .jd-newsletter__trust {
        flex-direction: column;
        gap: 12px;
    }
}
