* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Karla', sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    background: #f7f4f1;
}
a { text-decoration: none; color: inherit; }

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 18px 50px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: #2c2c2c;
}
.nav-logo span {
    font-size: 22px; font-style: italic; letter-spacing: 3px;
    opacity: 0.75; font-family: 'Cormorant Garamond', serif;
    font-weight: 400; text-transform: none;
}
.nav-links {
    display: flex; list-style: none; gap: 35px;
}
.nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; color: #666;
    transition: color 0.3s;
}
.nav-links a:hover { color: #2c2c2c; }
.nav-links a.active { color: #2c2c2c; border-bottom: 1px solid #c5b9ad; }


/* HAMBURGER */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2c2c2c;
    transition: transform 0.3s, opacity 0.3s;
}

/* HERO */
.hero {
    padding: 130px 50px 80px;
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 60px; align-items: center;
    min-height: 100vh;
}
.hero-left {
    display: flex; flex-direction: column; gap: 30px;
}
.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 300;
    letter-spacing: 2px; line-height: 1.1;
    color: #2c2c2c;
}
.hero-subtitle {
    font-size: 14px; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase;
    color: #999; margin-top: -10px;
}
.hero-line {
    width: 60px; height: 1px; background: #c5b9ad;
}
.hero-about {
    font-size: 16px; line-height: 1.9; color: #666;
    max-width: 540px;
}
.hero-about p { margin-bottom: 16px; }
.hero-citation {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-style: italic;
    color: #888; line-height: 1.7;
    border-left: 2px solid #c5b9ad;
    padding-left: 24px; margin-top: 10px;
}
.hero-right {
    position: relative;
}
.hero-portrait {
    width: 100%; max-width: 480px;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* SECTION DIVIDER */
.section-divider {
    text-align: center;
    padding: 80px 40px 20px;
    max-width: 900px; margin: 0 auto;
}
.section-divider h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 400;
    letter-spacing: 1px; color: #2c2c2c;
    margin-bottom: 12px;
}
.section-divider p {
    font-size: 14px; color: #999;
    letter-spacing: 2px; text-transform: uppercase;
}
.section-divider .line {
    width: 50px; height: 1px; background: #c5b9ad;
    margin: 20px auto 0;
}

/* GALLERY */
.gallery {
    max-width: 1200px; margin: 0 auto;
    padding: 40px 50px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
}
.artwork-cell {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.artwork-card {
    cursor: pointer;
    transition: transform 0.35s ease;
    width: 100%;
}
.artwork-card:hover {
    transform: translateY(-6px);
}
.artwork-frame {
    padding: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.35s ease;
}
.artwork-card:hover .artwork-frame {
    box-shadow: 0 12px 40px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.12);
}
.artwork-mat {
    background: #fff;
    padding: 10px;
}
.artwork-img {
    width: 100%; height: auto; display: block;
    object-fit: cover;
}
.card-info {
    text-align: center; padding: 18px 8px 0;
}
.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 500;
    letter-spacing: 0.5px; color: #2c2c2c;
    margin-bottom: 4px;
}
.card-dims {
    font-size: 13px; color: #999;
    margin-bottom: 3px;
}
.card-technique {
    font-size: 13px; color: #888;
    font-style: italic;
}

/* CONTACT */
.contact {
    background: #fff;
    padding: 80px 50px;
}
.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 400;
    text-align: center;
    margin-bottom: 12px; color: #2c2c2c;
}
.contact-subtitle {
    text-align: center;
    font-size: 14px; color: #999;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 50px;
}
.contact-wrapper {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 60px; align-items: start;
}
.contact-info {
    display: flex; flex-direction: column; gap: 28px;
    padding-top: 10px;
}
.contact-item {
    display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
    width: 44px; height: 44px;
    background: #f7f4f1;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 18px; color: #888;
}
.contact-item-text {}
.contact-label {
    font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: #999; margin-bottom: 4px;
}
.contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: #2c2c2c;
}
.contact-value a {
    color: #2c2c2c; border-bottom: 1px solid #c5b9ad;
    transition: border-color 0.3s;
}
.contact-value a:hover { border-color: #2c2c2c; }

/* FORM */
.contact-form {
    display: flex; flex-direction: column; gap: 20px;
}
.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group {
    display: flex; flex-direction: column; gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: 12px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: #999;
}
.form-group input,
.form-group textarea,
.form-group select {
    font-family: 'Karla', sans-serif;
    font-size: 15px; color: #2c2c2c;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fafafa;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #c5b9ad;
    background: #fff;
}
.form-group textarea {
    resize: vertical; min-height: 120px;
}
.form-submit {
    font-family: 'Karla', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: #fff;
    background: #2c2c2c;
    border: none; border-radius: 3px;
    padding: 16px 40px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}
.form-submit:hover {
    background: #444;
    transform: translateY(-1px);
}
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; color: #2c2c2c;
}
.form-success.show { display: block; }

/* FOOTER */
footer {
    text-align: center; padding: 30px;
    font-size: 12px; color: #bbb;
    letter-spacing: 1px;
}

/* LIGHTBOX */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 10000;
    justify-content: center; align-items: center;
    flex-direction: column;
    cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 96vw;
    max-height: 85vh;
    position: relative;
}
.lightbox-container img {
    max-width: 80vw; max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
    display: block;
}
.lightbox-title {
    margin-top: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    text-align: center;
}
.lightbox-close {
    position: fixed; top: 25px; right: 30px;
    font-size: 32px; color: #fff; cursor: pointer;
    opacity: 0.7; transition: opacity 0.3s;
    background: none; border: none;
    font-family: sans-serif;
    z-index: 10010;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow {
    background: none; border: none;
    font-size: 48px; cursor: pointer;
    padding: 18px 16px;
    opacity: 0.85; transition: opacity 0.3s, transform 0.2s;
    z-index: 10010;
    user-select: none;
    line-height: 1;
    flex-shrink: 0;
}
.lightbox-arrow:hover { opacity: 1; transform: scale(1.15); }
.lightbox-arrow.prev { margin-right: 10px; }
.lightbox-arrow.next { margin-left: 10px; }
@media (max-width: 700px) {
    .lightbox-arrow { font-size: 32px; padding: 12px 8px; }
    .lightbox-container img { max-width: 85vw; max-height: 75vh; }
    .lightbox-title { font-size: 18px; margin-top: 12px; }
}


/* ---- BLOG STYLES ---- */
.blog-header {
    padding: 140px 50px 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.blog-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300;
    letter-spacing: 2px; color: #2c2c2c;
    margin-bottom: 16px;
}
.blog-header p {
    font-size: 16px; color: #888;
    letter-spacing: 1px;
}
.blog-header .line {
    width: 50px; height: 1px; background: #c5b9ad;
    margin: 24px auto 0;
}
.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 50px 80px;
}
.article-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.article-card .article-img {
    width: 100%; height: 300px;
    object-fit: cover;
}
.article-card .article-body {
    padding: 32px;
}
.article-date {
    font-size: 12px; color: #999;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 12px;
}
.article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 16px;
    line-height: 1.3;
}
.article-excerpt {
    font-size: 15px; color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.article-link {
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: #2c2c2c;
    border-bottom: 1px solid #c5b9ad;
    padding-bottom: 2px;
    transition: border-color 0.3s;
}
.article-link:hover { border-color: #2c2c2c; }

/* ---- ARTICLE PAGE STYLES ---- */
.article-page-header {
    padding: 140px 50px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.article-page-header .date {
    font-size: 12px; color: #999;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 20px;
}
.article-page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 400;
    line-height: 1.3; color: #2c2c2c;
}
.article-hero {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 50px;
}
.article-hero img {
    width: 100%; height: 400px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.article-page-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 50px 60px;
}
.article-page-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 24px;
}
.article-page-content p:first-child::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    float: left;
    line-height: 1;
    padding-right: 12px;
    color: #2c2c2c;
    font-weight: 600;
}
.article-nav {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 50px 60px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
}
.article-nav a {
    font-size: 13px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    color: #888;
    transition: color 0.3s;
}
.article-nav a:hover { color: #2c2c2c; }
.back-to-blog {
    text-align: center;
    padding: 0 50px 60px;
}
.back-to-blog a {
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: #2c2c2c;
    border-bottom: 1px solid #c5b9ad;
    padding-bottom: 2px;
}


/* ---- ARTICLE PAGE STYLES ---- */
.article-page-header {
    padding: 140px 50px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.article-page-header .date {
    font-size: 12px; color: #999;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 20px;
}
.article-page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 400;
    line-height: 1.3; color: #2c2c2c;
}
.article-hero {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 50px;
}
.article-hero img {
    width: 100%; height: 400px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.article-page-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 50px 60px;
}
.article-page-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 24px;
}
.article-page-content p:first-child::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    float: left;
    line-height: 1;
    padding-right: 12px;
    color: #2c2c2c;
    font-weight: 600;
}
.article-nav {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 50px 60px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
}
.article-nav a {
    font-size: 13px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    color: #888;
    transition: color 0.3s;
}
.article-nav a:hover { color: #2c2c2c; }
.back-to-blog {
    text-align: center;
    padding: 0 50px 60px;
}
.back-to-blog a {
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: #2c2c2c;
    border-bottom: 1px solid #c5b9ad;
    padding-bottom: 2px;
}



/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}
.timeline-ink {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #c5b9ad 0%, #c5b9ad 98%, transparent 100%);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.15s ease-out;
}
.timeline-ink-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 14px;
    height: 14px;
    background: #c5b9ad;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 12px rgba(197, 185, 173, 0.5);
    z-index: 4;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.timeline-ink-dot.show {
    transform: translate(-50%, -50%) scale(1);
}
.timeline-year {
    position: relative;
    text-align: center;
    margin: 28px 0 14px;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.timeline-year:first-child {
    margin-top: 8px;
}
.timeline-year.revealed {
    opacity: 1;
    transform: scale(1);
}
.timeline-year span {
    display: inline-block;
    background: #f7f4f1;
    padding: 4px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 2px;
}
.timeline-event {
    position: relative;
    width: 44%;
    padding: 18px 22px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(197, 185, 173, 0.25);
    border-radius: 2px;
    opacity: 0;
}
.timeline-event.left {
    margin-left: 0;
    text-align: right;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.timeline-event.right {
    margin-left: 56%;
    text-align: left;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.timeline-event:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(197, 185, 173, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.timeline-event.revealed {
    opacity: 1;
    transform: translateX(0);
}
.timeline-event.past.revealed {
    opacity: 0.55;
}
.timeline-event.past.revealed:hover {
    opacity: 0.85;
}
.timeline-event::before {
    content: '';
    position: absolute;
    top: 24px;
    width: 10px;
    height: 10px;
    background: #f7f4f1;
    border: 2px solid #c5b9ad;
    border-radius: 50%;
    z-index: 3;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.timeline-event.revealed::before {
    transform: scale(1);
}
.timeline-event.left::before { right: -30px; }
.timeline-event.right::before { left: -30px; }
.timeline-event::after {
    content: '';
    position: absolute;
    top: 28px;
    height: 1px;
    background: #c5b9ad;
    width: 0;
    transition: width 0.4s ease 0.2s;
}
.timeline-event.revealed::after { width: 22px; }
.timeline-event.left::after { right: -22px; }
.timeline-event.right::after { left: -22px; }
.event-date {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}
.event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.3;
    margin-bottom: 3px;
}
.event-location {
    font-size: 12px;
    color: #888;
    font-weight: 300;
    font-style: italic;
}
.timeline-event.current {
    background: rgba(255, 255, 255, 0.95);
    border-color: #c5b9ad;
    box-shadow: 0 2px 16px rgba(197, 185, 173, 0.15);
}
.timeline-event.current.revealed::before {
    background: #c5b9ad;
    border-color: #c5b9ad;
    animation: pulse-dot 2s ease-in-out infinite;
}
.timeline-event.current .event-date { color: #c5b9ad; }
.timeline-event.current .event-badge { display: inline-block; }
.timeline-event.future {
    border-style: dashed;
    border-color: rgba(197, 185, 173, 0.4);
}
.timeline-event.future .event-title { font-style: italic; }
.event-badge {
    display: none;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: #c5b9ad;
    padding: 2px 8px;
    border-radius: 1px;
    margin-bottom: 8px;
}
.event-badge-future {
    display: inline-block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c5b9ad;
    border: 1px solid #c5b9ad;
    padding: 1px 7px;
    border-radius: 1px;
    margin-bottom: 8px;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197, 185, 173, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(197, 185, 173, 0); }
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .blog-content { padding: 20px 30px 60px; }
    .hero {
        grid-template-columns: 1fr;
        gap: 40px; padding: 120px 30px 60px;
        min-height: auto;
    }
    .hero-name { font-size: 52px; }
    .hero-right { text-align: center; }
    .hero-portrait { max-width: 360px; }
    .gallery { gap: 35px; padding: 40px 30px 60px; }
    .timeline { max-width: 700px; }

    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 700px) {
    nav { padding: 14px 20px; flex-wrap: wrap; }
    .nav-logo { font-size: 16px; letter-spacing: 2px; }
    .nav-hamburger { display: flex; position: absolute; top: 14px; right: 20px; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding-top: 16px;
        border-top: 1px solid rgba(0,0,0,0.06);
        margin-top: 12px;
        order: 3;
    }
    .nav-links.open { display: flex; }
    .nav-links li { text-align: center; }
    .nav-links a { font-size: 13px; display: block; padding: 12px 0; }
    .hero { padding: 100px 20px 40px; }
    .hero-name { font-size: 38px; }
    .hero-about { font-size: 14px; }
    .hero-citation { font-size: 17px; }
    .gallery {
        grid-template-columns: 1fr;
        gap: 30px; padding: 30px 20px 50px;
    }
    .artwork-card { max-width: 100% !important; }
    .section-divider h2 { font-size: 30px; }
    .timeline-ink { left: 16px; }
    .timeline-ink-dot { left: 16px; }
    .timeline-event {
        width: calc(100% - 44px);
        margin-left: 44px !important;
        text-align: left !important;
    }
    .timeline-event.left,
    .timeline-event.right {
        transform: translateX(30px);
    }
    .timeline-event.revealed { transform: translateX(0); }
    .timeline-event::before {
        left: -32px !important;
        right: auto !important;
    }
    .timeline-event::after {
        left: -22px !important;
        right: auto !important;
    }
    .timeline-year { text-align: left; }
    .timeline-year span { margin-left: 16px; font-size: 20px; }

    .contact { padding: 50px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .blog-header { padding: 110px 20px 40px; }
    .blog-header h1 { font-size: 36px; }
    .blog-content { padding: 20px 20px 60px; }
    .article-card .article-img { height: 200px; }
    .article-card .article-body { padding: 24px; }
    .article-title { font-size: 24px; }
    .article-page-header { padding: 110px 20px 30px; }
    .article-page-header h1 { font-size: 30px; }
    .article-hero { padding: 0 20px; }
    .article-hero img { height: 250px; }
    .article-page-content { padding: 30px 20px 40px; }
    .article-page-content p { font-size: 15px; }
    .article-nav { padding: 20px 20px 40px; }
}