/* ==========================================================================
   HOME STYLES - COMMON + PAGE-SPECIFIC
   ========================================================================== */

/* ==========================================================================
   COMMON STYLES (Used across index, gallery, about, article)
   ========================================================================== */

/* ===== CUSTOM FONTS & CSS VARIABLES ===== */

@font-face {
    font-family: "chercan";
    font-weight: 700;
    font-style: normal;
    src: url("https://use.typekit.net/af/3dd78c/00000000000000007735a200/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),
         url("https://use.typekit.net/af/3dd78c/00000000000000007735a200/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),
         url("https://use.typekit.net/af/3dd78c/00000000000000007735a200/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
}

:root {
    --color-primary: #1c2e1d;
    --color-text: #3e3e3e;
    --color-accent: #AB4C98;
    --color-accent-hover: #C5A3B9;
    --color-pink-overlay: rgba(245, 233, 241, 0.9);
    --color-button-bg: #EFD8E7;
    --color-button-shadow: #dfc5d7;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'chercan', serif;
}

/* ===== RESET & BASE STYLES ===== */

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

body {
    font-family: var(--font-primary);
    background-color: #ffffff;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* ===== NAVIGATION ===== */

.main-nav {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 25px 4.8rem 15px;
    z-index: 999;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
}

.nav-logo-wrapper {
    justify-self: start;
}

.nav-links {
    justify-self: center;
}

.nav-cta {
    justify-self: end;
}

.nav-logo {
    width: 54px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 0;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #3E3E3E;
    margin: 0 8px;
    transition: color 0.3s ease;
}

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

.button-resume {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 450;
    color: var(--color-primary);
    background: var(--color-button-bg);
    padding: 0;
    width: 156px;
    height: 44px;
    border-radius: 999px;
    filter: drop-shadow(0.3rem 0.3rem 0.6rem var(--color-button-shadow));
    transition: background 0.3s ease, color 0.3s ease;
}

.button-resume:hover {
    background: #f5e9f1;
}

.arrow-icon {
    font-family: 'Material Icons';
    font-size: 18px;
    margin-left: 5px;
    vertical-align: middle;
}

.mobile-menu-wrapper {
    display: none;
}

.mobile-dropdown {
    display: none;
}

/* ===== FOOTER ===== */

.main-footer {
    padding: 4rem 4.8rem;
    text-align: center;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.5;
    letter-spacing: -0.017em;
    margin-bottom: 0.5rem;
}

.footer-contact {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 2;
}

.footer-contact a {
    color: var(--color-accent);
    transition: color 0.3s ease;
}

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

/* ==========================================================================
   UNIFIED RESPONSIVE MASONRY (Gallery & About)
   ========================================================================== */

.gallery-grid {
    column-count: 3; /* Default for Desktop */
    column-gap: 1.2rem;
    margin-bottom: 3rem;
    width: 100%;
}
.about-page .gallery-grid {
    column-count: 4;
}

.gallery-item {
    position: relative;
    width: 100%;
    display: block; /* Changed from inline-block for better stability */
    margin-bottom: 1.4rem;
    break-inside: avoid; /* Essential: keeps caption attached to image */
    -webkit-column-break-inside: avoid;
    background-color: #F6F6F6;
    border: 0.1rem solid #e1e1e1;
    border-radius: 1.5rem;
    overflow: hidden;
    filter: drop-shadow(0rem 0rem 0.57rem #e1e1e1);
    transition: transform 0.3s ease;
    /* Hardware acceleration fix for the mobile "unloaded" column bug */
    transform: translateZ(0); 
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
}

.gallery-caption {
    position: absolute;
    bottom: 5%;
    right: 5%;
}

.caption-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== COMMON TABLET RESPONSIVE (768px - 950px) ===== */

@media screen and (min-width: 768px) and (max-width: 950px) {
    .main-nav {
        padding: 25px 1.8rem 15px;
    }
    
    .nav-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }
    
    .nav-logo {
        width: 50px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .button-resume {
        font-size: 13px;
        width: 140px;
        height: 40px;
    }
    
    .main-footer {
        padding: 4rem 1.8rem;
    }
    
    .footer-name {
        font-size: 64px;
    }
    
    .footer-contact {
        font-size: 15px;
        margin-top: 0rem;
    }
    .gallery-grid {
        column-count: 3;
        column-gap: 1rem;
    }
    .about-page .gallery-grid {
        column-count: 3;
    }
}


/* ===== COMMON MOBILE RESPONSIVE (0px - 767px) ===== */

@media screen and (max-width: 767px) {
    
    /* Navigation */
    .main-nav {
        padding: 20px 20px 15px;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        width: 35px;
    }
    
    .desktop-only-links {
        display: none !important;
    }
    
    .mobile-menu-wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .mobile-toggle {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 28px;
        color: #1b1b1b;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 9999;
        font-family: 'Material Icons';
    }
    
    .icon-open,
    .icon-close {
        font-family: 'Material Icons';
        font-size: 28px;
    }
    
    .icon-close {
        display: none;
    }
    
    .mobile-toggle.active .icon-open {
        display: none;
    }
    
    .mobile-toggle.active .icon-close {
        display: block;
    }
    
    /* Mobile Dropdown */
    .mobile-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        z-index: 9990;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 25vh 20px 20px;
        overflow-y: auto;
    }
    .button-resume {
        width: 200px;
        height: 56px;
    }
    
    .mobile-dropdown.active {
        display: flex;
    }
    
    .mobile-links {
        width: 100%;
        margin-bottom: 5rem;
    }
    
    .mobile-links a {
        display: block;
        font-size: 26px;
        font-weight: 500;
        color: #1b1b1b;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(30px);
        transition: color 0.3s ease;
    }
    
    .mobile-dropdown.active .mobile-links a {
        animation: slideUp 0.5s ease-out forwards;
    }
    
    .mobile-links a:nth-child(1) { animation-delay: 0.1s; }
    .mobile-links a:nth-child(2) { animation-delay: 0.2s; }
    .mobile-links a:nth-child(3) { animation-delay: 0.3s; }
    
    .mobile-resume {
        font-size: 20px;
        opacity: 0;
        transform: translateY(30px);
    }
    .arrow-icon {
        font-size: 18px;
    }
    
    .mobile-dropdown.active .mobile-resume {
        animation: slideUp 1s ease-out forwards;
        animation-delay: 0.4s;
    }
    
    @keyframes slideUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Footer */
    .main-footer {
        padding: 4rem 20px;
    }
    
    .footer-name {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .footer-contact {
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
    }

    .gallery-grid {
        column-count: 2 !important; 
        column-gap: 1rem;
    }
    .about-page .gallery-grid {
        column-count: 2 !important;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
        border-radius: 1rem;
        min-height: 90px; /* Placeholder while images/videos load */
    }
    .gallery-item img,
    .gallery-item video {
        border-radius: 1rem;
    }


    .caption-badge {
        font-size: 10px;
        padding: 0.3rem 0.6rem;
    }

}

/* ==========================================================================
   INDEX-SPECIFIC STYLES
   ========================================================================== */

/* ===== HERO SECTION ===== */

.page-content {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
}

.hero-section {
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0 2rem;
    text-align: center;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    margin-bottom: 4rem;
}

.page-loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 76px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.hero-emoji {
    margin-top: 2rem;
}

.emoji-img {
    width: 200px;
    height: auto;
}

.case-study-cta {
    padding: 2rem 0;
    text-align: center;
}

.cta-text {
    font-size: 22px;
    font-weight: 500;
    color: #1e1e1e;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.down-arrow {
    font-family: 'Material Icons';
    font-size: 22px;
    vertical-align: middle;
}

/* ===== WORK GRID ===== */

.work-section {
    padding: 2rem 0 3rem;
}

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

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    border: 2px solid rgba(243, 243, 243, 0.8);
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
    filter: drop-shadow(0.15rem 0.1rem 0.2rem rgba(243, 243, 243, 0.4))
            drop-shadow(-0.15rem 0.2rem 0.2rem rgba(246, 246, 246, 0.4));
}

.project-card:hover {
    transform: scale(1.02);
}

.pink-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-pink-overlay);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.project-card:hover .pink-overlay {
    opacity: 1;
}

.project-content {
    padding: 1.2rem 1.7rem;
    position: relative;
    z-index: 2;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.project-header h3 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

.project-arrow {
    font-family: 'Material Icons';
    font-size: 34px;
    color: var(--color-primary);
    vertical-align: middle;
}

.project-description,
.bodycopy {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
}

.project-image {
    position: relative;
    flex-grow: 1;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ===== INDEX TABLET RESPONSIVE (768px - 950px) ===== */

@media screen and (min-width: 768px) and (max-width: 950px) {
    .page-content {
        padding-left: 1.8rem;
        padding-right: 1.8rem;
    }
    
    .hero-section {
        padding: 6rem 0 2rem;
    }
    
    .hero-title {
        font-size: 56px;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 21px;
    }
    
    .emoji-img {
        width: 170px;
    }
    
    .cta-text {
        font-size: 20px;
    }
    
    .work-section {
        padding: 2rem 0 1rem;
    }
    
    .project-content {
        padding: 1.2rem 1.7rem;
    }
    
    .project-header h3 {
        font-size: 26px;
    }
    
    .project-arrow {
        font-size: 23px;
    }
    
    .project-description {
        font-size: 14px;
    }
}

/* ===== INDEX MOBILE RESPONSIVE (0px - 767px) ===== */
@media screen and (max-width: 767px) {
    
    .page-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 80vh;
        padding: 4rem 0 0rem;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .emoji-img {
        width: 140px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .down-arrow {
        font-size: 16px;
    }
    
    /* Work Grid */
    .work-section {
        padding: 1rem 0 0rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-card {
        aspect-ratio: auto;
        height: 260px;
    }
    
    .project-content {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .project-header {
        margin-bottom: 0.2rem;
    }
    
    .project-header h3 {
        font-size: 24px;
        font-weight: 600;
    }
    
    .project-arrow {
        font-size: 21px;
    }
    
    .project-description,
    .bodycopy {
        font-size: 14px;
    }
}

/* ===== INDEX LAPTOP OPTIMIZATION (951px - 1350px) ===== */

@media screen and (min-width: 951px) and (max-width: 1350px) {
    .project-content {
        padding: 1.2rem 1.7rem;
    }
    
    .project-header h3 {
        font-size: 30px;
    }
    
    .project-arrow {
        font-size: 27px;
    }
    
    .project-description,
    .bodycopy {
        font-size: 15px;
    }
    
    .project-header {
        margin-bottom: 0.5rem;
    }
    .force-break {
        break-before: column; /* Standard */
        -webkit-column-break-before: always; /* For Safari/iPhone */
    }
}


/* ===== GALLERY TABLET RESPONSIVE (768px - 950px) ===== */

@media screen and (min-width: 768px) and (max-width: 950px) {
    .page-content {
        padding-left: 1.8rem;
        padding-right: 1.8rem;
        padding-bottom: 0rem;
    }
}

/* ===== GALLERY MOBILE RESPONSIVE (0px - 767px) ===== */
@media screen and (max-width: 767px) {

}


/* ==========================================================================
   ABOUT-SPECIFIC STYLES
   ========================================================================== */

/* Page Content */
.page-content {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
    padding-top: 2rem;
}

/* Intro Section */
.intro-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
    margin-bottom: 2rem;
}

.intro-image {
    width: 30%;
    flex-shrink: 0;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.intro-text {
    width: 45%;
    margin-right: 20%;
    margin-top: 20px;
}

.intro-header {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 3rem;
}

.intro-body,
.bodycopy {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 2;
}

.contact-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
}

.contact-info a {
    color: var(--color-accent);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--color-accent-hover);
}

.button-connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-button-bg);
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    filter: drop-shadow(0.3rem 0.3rem 0.6rem var(--color-button-shadow));
    transition: background 0.3s ease;
}

.button-connect:hover {
    background: #f5e9f1;
}

/* Get to know me section */
.know-me-header {
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 3.5rem;
}

.know-me-title {
    font-size: 22px;
    font-weight: 500;
    color: #1e1e1e;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.know-me-title .down-arrow {
    font-family: 'Material Icons';
    font-size: 22px;
    position: relative;
    top: 5px;
}

/* Resume Sections */
.resume-section {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.resume-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    align-items: baseline;
}

.resume-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* ===== ABOUT TABLET RESPONSIVE (768px - 950px) ===== */

@media screen and (min-width: 768px) and (max-width: 950px) {
    .page-content {
        padding-left: 1.8rem;
        padding-right: 1.8rem;
    }
    
    .intro-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-image {
        width: 40%;
    }
    
    .intro-text {
        width: 95%;
        margin-right: 0;
        margin-top: 0;
    }
    
    .intro-header {
        font-size: 38px;
        margin-bottom: 1.5rem;
    }
    
    .intro-body,
    .contact-info,
    .button-connect {
        font-size: 15px;
        line-height: 2;
    }
    
    .know-me-header {
        margin-top: 4rem;
        margin-bottom: 3rem;
    }
    
    .know-me-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
        margin-top: 2rem;
    }
    
    .resume-row {
        font-size: 15px;
        line-height: 1.5;
        padding: 1rem;
    }
    .resume-section{
        margin-top: 5rem;
        margin-bottom: 1rem;
    }
}

/* ===== ABOUT MOBILE RESPONSIVE (0px - 767px) ===== */

@media screen and (max-width: 767px) {
    .page-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 1.2rem;
    }
    
    .intro-container {
        flex-direction: column;
        gap: 1.6rem;
    }
    
    .intro-image {
        width: 50%;
    }
    
    .intro-text {
        width: 95%;
        margin-right: 0;
        margin-top: 0;
    }
    
    .intro-header {
        font-size: 24px;
        margin-bottom: 2rem;
    }
    
    .intro-body,
    .contact-info,
    .button-connect {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .know-me-header {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
    
    .know-me-title {
        font-size: 17px;
    }
    
    .know-me-title .down-arrow {
        font-size: 17px;
        top: 3px;
    }
    
    .section-title {
        font-size: 28px;
        margin-top: 0rem;
        margin-bottom: 0rem;
    }
    .resume-section{
        margin-top: 2rem;
        margin-bottom: 0rem;
    }.contact-info {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .resume-row {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        font-size: 14px;
        line-height: 1.4;
        padding: 1rem 0;
    }
}

@media screen and (max-width: 460px) {
    .intro-image {
        width: 66%;
    }
}


/* ==========================================================================
   ARTICLE-SPECIFIC STYLES
   ========================================================================== */

/* Article Content */
.article-content {
    padding: 3rem 4.8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.column-set {
    position: relative;
}

.column-unit {
    width: 100%;
}

/* Image floats left and text wraps around it */
.column-unit:first-child {
    float: left;
    width: 45%;
    margin-right: 3.5rem;
    margin-bottom: 2rem;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.image-caption {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
}

.article-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Paragraphs wrap around image, then constrain to 60% after clearing */
.article-body {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

/* Once text clears the float, constrain it to 60% for readability */
.text-constrained {
    max-width: 60%;
}

.article-body:last-child {
    margin-bottom: 0;
}

/* Clear float after article */
.article-content::after {
    content: "";
    display: table;
    clear: both;
}

/* ===== ARTICLE TABLET RESPONSIVE (768px - 950px) ===== */

@media screen and (min-width: 768px) and (max-width: 950px) {
    .article-content {
        padding: 2rem 1.8rem;
        padding-bottom: 0rem;
    }
    
    /* Keep float layout on tablet */
    .column-unit:first-child {
        width: 40%;
        margin-right: 2.5rem;
    }
    
    .text-constrained {
        max-width: 65%;
    }
    
    .article-title {
        font-size: 38px;
    }
    
    .article-body {
        font-size: 15px;
    }
}

/* ===== ARTICLE MOBILE RESPONSIVE (0px - 767px) ===== */

@media screen and (max-width: 767px) {
    .article-content {
        padding: 1.2rem 20px;
        padding-bottom: 0rem;
    }
    
    /* Article Mobile Layout */
    .column-set {
        display: block;
    }
    
    .column-unit:first-child {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .text-constrained {
        max-width: 100%;
    }
    
    .column-unit {
        width: 100%;
        margin-bottom: 0;
    }
    
    .image-caption {
        font-size: 10px;
        line-height: 1.4;
        margin-top: 10px;
    }
    
    .article-title {
        font-size: 24px;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .article-body {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
}