/* ============================================
   CSS Variables & Base Styles
   ============================================ */
:root {
    /* Colors - Forest & Cream */
    --color-bg: #FAF8F2;
    --color-bg-alt: #F0EBE3;
    --color-text: #2D2A26;
    --color-text-muted: #6B6560;
    --color-accent: #2D6A4F;
    --color-accent-hover: #1B4332;
    --color-border: #D4CFC5;

    /* Blog-specific color aliases (map to existing colors) */
    --color-primary: #2D6A4F;
    --color-primary-light: #40916C;
    --color-bg-warm: #F0EBE3;
    --color-text-light: #999;

    /* Typography */
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    background: #1B4332;
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: none;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #FAF8F2;
    font-weight: 400;
}

.nav-logo:hover {
    color: #D4CFC5;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    color: rgba(250, 248, 242, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FAF8F2;
}

.nav-links a.active {
    font-weight: 600;
}

/* ============================================
   Section Labels
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.highlight {
    color: var(--color-accent);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
    max-width: 540px;
}

.hero-beliefs {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 540px;
}

.hero-image {
    position: relative;
    width: fit-content;
}

.hero-image img {
    width: 320px;
    height: auto;
    border-radius: 8px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 320px;
    height: 100%;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    z-index: 0;
    opacity: 0.4;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
    min-height: calc(100vh - 400px);
}

.about-header {
    max-width: var(--max-width);
    margin: 0 auto var(--space-xl);
}

.about-header h1,
.about-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

.about-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
}

.about-text p {
    margin-bottom: var(--space-md);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--color-accent);
    font-weight: 600;
}

.about-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-lg));
    align-self: start;
    padding: var(--space-lg);
    background: #D4E6DC;
    border-radius: 8px;
}

.about-sidebar h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.interests-list {
    list-style: none;
}

.interests-list li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: var(--color-text-muted);
}

.interests-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: calc(100vh - 400px);
}

.testimonials-header {
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.testimonials-header h1,
.testimonials-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-lg);
}

.testimonial {
    background: #D4E6DC;
    padding: var(--space-lg);
    border-radius: 8px;
    border: none;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-style: normal;
    color: var(--color-text);
}

.testimonial-name a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.testimonial-name a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Scattered testimonial layout */
.testimonial-1 { grid-column: 1 / 7; }
.testimonial-2 { grid-column: 8 / 13; margin-top: var(--space-xl); }
.testimonial-3 { grid-column: 2 / 6; }
.testimonial-4 { grid-column: 7 / 12; }
.testimonial-5 { grid-column: 1 / 8; }
.testimonial-6 { grid-column: 6 / 13; margin-top: calc(-1 * var(--space-xl)); }
.testimonial-7 { grid-column: 1 / 6; }
.testimonial-8 { grid-column: 7 / 13; margin-top: var(--space-lg); }
.testimonial-9 { grid-column: 2 / 7; }
.testimonial-10 { grid-column: 8 / 12; margin-top: calc(-1 * var(--space-md)); }

/* ============================================
   Projects Section
   ============================================ */
.projects {
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: calc(100vh - 400px);
}

.projects-header {
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.projects-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    line-height: 1.3;
}

/* Projects Grid - Full width layout */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

/* Project Card Styling */
.project-card {
    display: flex;
    flex-direction: row;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--color-text);
    cursor: pointer;
    position: relative;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.15);
    border-color: var(--color-accent);
}

/* Project Image Container */
.project-image {
    flex: 0 0 45%;
    min-height: 280px;
    overflow: hidden;
    background: var(--color-bg-alt);
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Project Content */
.project-content {
    flex: 1;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

/* Allow links inside project cards to work */
.project-content a {
    position: relative;
    z-index: 2;
}

.project-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
}

.project-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

.project-tech {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.tech-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.tech-stack {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 0;
}

/* ============================================
   Connect Section (Footer)
   ============================================ */
.connect {
    padding: var(--space-xl) var(--space-lg) var(--space-md);
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.connect-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.connect h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.connect-tagline {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 0.875rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.15);
}

.social-link i {
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

/* ============================================
   Footer Bottom
   ============================================ */
.footer-bottom {
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-lg);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1,
.hero-subtitle,
.hero-description,
.hero-beliefs {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-text h1 { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.hero-beliefs { animation-delay: 0.4s; }

.hero-image {
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Index - Page wrapper */
.blog-page-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

/* Blog Index - Header */
.blog-header {
    margin-bottom: 3rem;
}

.blog-header .section-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.blog-header h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.blog-header .subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Blog Index - Featured Post */
.featured-post {
    padding: 1.5rem;
    margin-bottom: 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.featured-post::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.featured-post:hover {
    background: linear-gradient(to right, rgba(45, 106, 79, 0.04), transparent);
}

.featured-post:hover::before {
    opacity: 1;
}

.featured-post:hover .post-title {
    color: var(--color-primary);
}

.featured-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.featured-post .post-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-meta {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.featured-summary {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Blog Index - Post List */
.post-list {
    list-style: none;
}

.post-item {
    position: relative;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 0.85rem 1.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.post-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.post-item:hover {
    background: linear-gradient(to right, rgba(45, 106, 79, 0.04), transparent);
}

.post-item:hover::before {
    opacity: 1;
}

.post-item:hover .post-title {
    color: var(--color-primary);
}

.post-item a {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    gap: 1.5rem;
}

.post-date {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-light);
    min-width: 110px;
    flex-shrink: 0;
}

.post-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-text);
    transition: color 0.2s ease;
}

/* Blog Post - Page wrapper */
.blog-post-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

/* Blog Post - Header */
.post-header {
    margin-bottom: 3rem;
}

.post-header .back-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
}

.post-header .back-link:hover {
    color: var(--color-primary);
}

.post-header h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-meta {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Blog Post - Content */
.post-content {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-text);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.post-content a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.2s ease;
}

.post-content a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content strong {
    font-weight: 600;
}

.post-content em {
    font-style: italic;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

/* Blog Post - Blockquote */
.post-content blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 0 1.5rem 1.75rem;
    border-left: 4px solid var(--color-primary);
    background: linear-gradient(to right, rgba(45, 106, 79, 0.04), transparent);
}

.post-content blockquote p {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 0;
}

.post-content blockquote cite,
.post-content blockquote footer {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
}

.post-content blockquote cite::before,
.post-content blockquote footer::before {
    content: '— ';
}

/* Blog Post - Images & Captions */
.post-content figure {
    margin: 2.5rem 0;
}

.post-content figure img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.post-content figure figcaption {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    line-height: 1.5;
}

.post-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}

/* Blog Post - Video Embed */
.post-content .video-embed {
    margin: 2.5rem 0;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
}

.post-content .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.post-content .video-caption {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Blog Post - Footer */
.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.post-footer .back-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}

.post-footer .back-link:hover {
    color: var(--color-primary-light);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .hero-image {
        order: -1;
        max-width: 240px;
        margin: 0 auto;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-sidebar {
        position: static;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-1,
    .testimonial-2,
    .testimonial-3,
    .testimonial-4,
    .testimonial-5,
    .testimonial-6,
    .testimonial-7,
    .testimonial-8,
    .testimonial-9,
    .testimonial-10 {
        grid-column: 1;
        margin-top: 0;
    }

    .project-card {
        flex-direction: column;
    }

    .project-image {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: auto;
    }
}

@media (max-width: 600px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }
    
    .nav {
        padding: 0 var(--space-sm);
    }
    
    .nav-links {
        gap: var(--space-sm);
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .hero {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .project-content {
        padding: var(--space-md);
    }

    .project-title {
        font-size: 1.25rem;
    }

    /* Blog responsive styles */
    .blog-page-wrapper,
    .blog-post-wrapper {
        padding: calc(var(--nav-height) + 2rem) 1.25rem 2rem;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.4rem;
    }

    .post-content blockquote {
        padding-left: 1.25rem;
        margin: 2rem 0;
    }

    .post-content blockquote p {
        font-size: 1.15rem;
    }

    .post-item {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding: 0.85rem 1.25rem;
    }

    .post-item a {
        flex-direction: column;
        gap: 0.25rem;
    }

    .post-date {
        min-width: auto;
        font-size: 0.8rem;
    }

    .post-title {
        font-size: 1.1rem;
    }

    .featured-post {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding: 1.25rem;
    }
}
