/* Diseño Estilo Apple - Definición de Variables y Estilos Base */

:root {
    --bg-body: #ffffff;
    --bg-secondary: #f2f2f2;
    --bg-card: #ffffff;
    --text-main: #1d1d1f;
    --text-grey: #86868b;
    --accent-blue: #0071e3;
    
    --border-radius-card: 32px;
    --nav-height: 52px;
    --nav-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(0, 0, 0, 0.12);
    --card-border: rgba(0, 0, 0, 0.2);
    
    --btn-buy-bg: #1d1d1f;
    --btn-buy-text: #ffffff;
}

[data-theme="dark"] {
    --bg-body: #000000;
    --bg-secondary: #1c1c1e;
    --bg-card: #1c1c1e;
    --text-main: #f5f5f7;
    --text-grey: #a1a1a6;
    --nav-bg: rgba(0, 0, 0, 0.82);
    --border-color: rgba(255, 255, 255, 0.14);
    --card-border: rgba(255, 255, 255, 0.12);
    --btn-buy-bg: #f5f5f7;
    --btn-buy-text: #1d1d1f;
    --accent-blue: #0A84FF;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navegación --- */
.apple-nav {
    position: fixed;
    top: 0; width: 100%; height: var(--nav-height);
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 2000;
    border-bottom: 1px solid var(--border-color);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; color: var(--text-main); }
.nav-links a { margin: 0 16px; text-decoration: none; color: var(--text-main); font-size: 0.85rem; font-weight: 500; opacity: 0.8; transition: opacity 0.3s; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 34px; height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.theme-toggle-btn:hover { background: var(--bg-secondary); transform: scale(1.05); }
.theme-toggle-btn svg { width: 18px; height: 18px; }

.btn-apple-buy { background: var(--btn-buy-bg); color: var(--btn-buy-text); border: none; padding: 6px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 500; text-decoration: none; transition: transform 0.3s cubic-bezier(0.28, 0.11, 0.32, 1); }
.btn-apple-buy:hover { transform: scale(1.05); background: var(--accent-blue); color: #fff;}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 4px;
}
.hamburger-btn svg { width: 24px; height: 24px; }

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    z-index: 1999;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child { border-bottom: none; }

/* --- Hero Section --- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-height); }
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 4.5rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 24px; }
.hero-text h1 span { color: var(--text-grey); }
.hero-sub { font-size: 1.35rem; color: var(--text-grey); margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.btn-apple-primary { background: var(--accent-blue); color: white; text-decoration: none; padding: 14px 28px; border-radius: 40px; font-weight: 500; font-size: 1.1rem; display: inline-block; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.btn-apple-primary:hover { transform: scale(1.03); }
.link-apple-more { color: var(--accent-blue); text-decoration: none; font-size: 1.1rem; font-weight: 500; transition: opacity 0.3s; }
.link-apple-more:hover { opacity: 0.8; }

/* --- Tarjeta de Perfil de Gerard --- */
.hero-visual { flex: 1; display: flex; justify-content: flex-end; }
.apple-card { background: var(--bg-card); border-radius: var(--border-radius-card); transition: transform 0.4s, box-shadow 0.4s; }
.profile-card { 
    width: 100%;
    max-width: 440px; 
    padding: 40px 32px; 
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    background: #1d1d1f;
    color: #f5f5f7;
}
.profile-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.15); }

.profile-avatar { 
    width: 180px; height: 180px; 
    margin: 0 auto 35px; 
    border-radius: 50%; 
    border: 4px solid #0A84FF; 
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: #2c2c2e;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }

.profile-role { text-align: center; color: #0A84FF; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 12px; }
.profile-name { text-align: center; font-size: 2rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.02em; color: #f5f5f7; }
.profile-desc { text-align: center; color: #a1a1a6; font-size: 1.05rem; margin-bottom: 30px; line-height: 1.6; }

.profile-skills { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.profile-skills li { display: flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 400; color: #f5f5f7; }
.profile-skills svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Dark mode: invert profile card to white */
[data-theme="dark"] .profile-card {
    background: #f5f5f7;
    color: #1d1d1f;
    border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .profile-avatar { border-color: #0071e3; background: #e5e5ea; }
[data-theme="dark"] .profile-role { color: #0071e3; }
[data-theme="dark"] .profile-name { color: #1d1d1f; }
[data-theme="dark"] .profile-desc { color: #6e6e73; }
[data-theme="dark"] .profile-skills li { color: #1d1d1f; }
[data-theme="dark"] .profile-skills svg { stroke: #0071e3; }

/* --- Secciones Comunes --- */
.section { padding: 100px 0; }
.bg-secondary { background: var(--bg-secondary); }
.section-intro { text-align: center; margin-bottom: 60px; }
.section-intro h2 { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-intro p { font-size: 1.25rem; color: var(--text-grey); }

/* --- Grid Apple --- */
.apple-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.base-card { 
    padding: 36px 32px; 
    border: 1.5px solid #d2d2d7; 
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}
[data-theme="dark"] .base-card { border-color: rgba(255,255,255,0.15); }
.base-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.base-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.base-card p {
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 0.95rem;
}
.role-date { font-size: 0.8rem; font-weight: 600; color: var(--accent-blue) !important; margin: 6px 0 16px; letter-spacing: 0.01em; }

.text-center { text-align: center; }

/* Responsive General */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger-btn { display: flex; align-items: center; justify-content: center; }
    .hero-container { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-visual { justify-content: center; width: 100%; margin-top: 20px; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-text h1 { font-size: 3rem; }
    .hero-sub { font-size: 1.1rem; }
    .section-intro h2 { font-size: 2.5rem; }
    .section-intro p { font-size: 1.05rem; }
    .apple-grid { grid-template-columns: 1fr; gap: 16px; }
    .profile-card { max-width: 100%; }
    .hero { padding-bottom: 60px; }
    .base-card { padding: 28px 24px; }
}

@media (max-width: 500px) {
    .hero-text h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .section-intro h2 { font-size: 2rem; }
    .profile-avatar { width: 130px; height: 130px; }
    .profile-name { font-size: 1.6rem; }
    .profile-desc { font-size: 0.95rem; }
    .section { padding: 60px 0; }
    .btn-apple-primary { padding: 12px 22px; font-size: 1rem; }
}

/* --- Bento Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-card);
    border: 1.5px solid #d2d2d7;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
[data-theme="dark"] .bento-card { border-color: rgba(255,255,255,0.15); }

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.bento-wide { grid-column: span 2; }

.bento-flex-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.text-side { flex: 1.5; }
.visual-side { flex: 1; display: flex; justify-content: center; }

.bento-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.bento-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.bento-card p {
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.5;
}

.bento-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bento-list li {
    background: var(--bg-secondary);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Visuals inside Bento Cards */
.bento-visual {
    margin-top: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-orb {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    filter: blur(5px);
    animation: pulseOrb 4s infinite alternate;
}

/* n8n Node Visual */
.n8n-node-visual {
    display: flex;
    align-items: center;
    gap: 15px;
}
.node {
    width: 32px;
    height: 32px;
    background: #FF6D5A;
    border-radius: 8px;
    transform: rotate(45deg);
}
.node-line {
    width: 40px;
    height: 2px;
    background: var(--border-color);
}

@keyframes pulseOrb {
    from { transform: scale(1); opacity: 0.8; }
    to { transform: scale(1.2); opacity: 1; }
}

.future-grid {
    display: flex;
    gap: 30px;
    align-items: center;
}

.future-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.future-items span {
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* Estilos específicos para darle color vivo */
.bento-ia-business { border-top: 4px solid #af52de; }
.bento-agentes { border-top: 4px solid #0071e3; }
.bento-n8n { border-top: 4px solid #FF6D5A; }
.bento-apps { border-top: 4px solid #5856d6; }
.bento-video { border-top: 4px solid #ff3b30; }
.bento-future { border-top: 4px solid #34c759; }

/* Responsive Bento */
@media (max-width: 1000px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .bento-flex-row { flex-direction: column; align-items: flex-start; }
    .future-grid { flex-direction: column; align-items: flex-start; }
    .bento-card h3 { font-size: 1.5rem; }
}

/* --- Calendar Roadmap --- */
.calendar-roadmap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.month-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.month-card:hover { border-color: var(--accent-blue); transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.month-card.current {
    border: 2px solid var(--accent-blue);
    background: rgba(0, 113, 227, 0.03);
    transform: scale(1.04);
    z-index: 10;
}

.month-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: var(--accent-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.60rem;
    font-weight: 800;
    text-transform: uppercase;
}

.month-name {
    font-size: 0.70rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.month-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.project-desc {
    font-size: 0.8rem;
    color: var(--text-grey);
    line-height: 1.4;
}

/* --- Methodology Box --- */
.methodology-box {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
    margin-top: 40px;
}

.methodology-text h3 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 700; }
.methodology-text p { color: var(--text-grey); font-size: 1.2rem; }

.methodology-steps {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-num {
    display: block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: var(--bg-secondary);
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 15px;
    color: var(--accent-blue);
}

.step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: var(--text-grey); line-height: 1.4; padding: 0 10px; }

/* --- Footer / Contacto --- */
footer.section { padding: 100px 0; }
footer h2 { font-size: 3rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.02em; }

.contact-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.contact-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-grey);
    font-size: 1.15rem;
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-actions .btn-apple-primary {
    display: inline-flex;
    align-items: center;
}

/* Responsive Calendar */
@media (max-width: 1100px) {
    .calendar-roadmap { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
    .calendar-roadmap { grid-template-columns: repeat(2, 1fr); }
    .methodology-box { padding: 30px 20px; gap: 30px; }
    .methodology-text h3 { font-size: 1.8rem; }
    .methodology-text p { font-size: 1rem; }
    .methodology-steps { flex-wrap: wrap; gap: 15px; }
    .step { flex: 0 0 45%; }
    footer h2 { font-size: 2rem; }
}

@media (max-width: 500px) {
    .calendar-roadmap { grid-template-columns: 1fr; }
    .month-card.current { transform: none; }
    .methodology-text h3 { font-size: 1.5rem; }
    .methodology-steps { flex-direction: column; align-items: center; }
    .step { flex: 0 0 100%; width: 100%; }
    footer h2 { font-size: 1.6rem; }
}

/* --- Site Footer (Legal) --- */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent-blue); }

.footer-dot {
    color: var(--text-grey);
    opacity: 0.4;
    font-size: 0.8rem;
}

.footer-copyright {
    color: var(--text-grey);
    font-size: 0.7rem;
    opacity: 0.6;
    letter-spacing: 0.03em;
}

/* --- Legal Pages --- */
.legal-page {
    padding-top: calc(var(--nav-height) + 60px);
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-grey);
    font-size: 0.85rem;
    margin-bottom: 50px;
}

.legal-content {
    max-width: 780px;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal-content ul li {
    position: relative;
    padding-left: 20px;
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 600;
}

.legal-content a {
    color: var(--accent-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 500px) {
    .legal-page h1 { font-size: 2rem; }
    .legal-content h2 { font-size: 1.2rem; }
}

/* --- Blog & News --- */
.blog-page { padding-top: calc(var(--nav-height) + 60px); }
.blog-page .section-intro h1 { font-size: 3.5rem; }

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

.blog-card {
    background: var(--bg-card);
    border: 1.5px solid #d2d2d7;
    border-radius: 24px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
    overflow: hidden;
}
[data-theme="dark"] .blog-card { border-color: rgba(255,255,255,0.15); }

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.blog-card-body {
    padding: 24px 28px 28px;
}

/* Article Hero Image */
.article-hero {
    max-width: 720px;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
}

.article-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.blog-card h2, .blog-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.blog-card p {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date, .blog-read {
    font-size: 0.75rem;
    color: var(--text-grey);
    font-weight: 500;
}

/* --- Article Page --- */
.article-page { padding-top: calc(var(--nav-height) + 60px); }

.article-back {
    display: inline-block;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 40px;
    transition: opacity 0.3s;
}
.article-back:hover { opacity: 0.7; }

.article-header {
    max-width: 720px;
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 16px 0 20px;
}

.article-body {
    max-width: 720px;
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}

.article-body p {
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.article-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.article-body ul li {
    position: relative;
    padding-left: 20px;
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 8px;
}

.article-body ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Responsive Blog */
@media (max-width: 900px) {
    .blog-grid, .news-preview { grid-template-columns: repeat(2, 1fr); }
    .article-header h1 { font-size: 2.2rem; }
    .blog-page .section-intro h1 { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .blog-grid, .news-preview { grid-template-columns: 1fr; }
    .article-header h1 { font-size: 1.8rem; }
    .blog-page .section-intro h1 { font-size: 2rem; }
    .article-body h2 { font-size: 1.3rem; }
}
