/* ===========================
   Gunila Vet Coach — Modern Prototype
   =========================== */

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --teal-50: #f0fdf9;
    --teal-100: #ccfbef;
    --teal-200: #99f6df;
    --teal-300: #5fe9cb;
    --teal-400: #2dd4b3;
    --teal-500: #14b89a;
    --teal-600: #0d947e;
    --teal-700: #0f7666;
    --teal-800: #115e53;
    --teal-900: #134e45;

    --sage-50: #f6f7f4;
    --sage-100: #eaede5;
    --sage-200: #d5dbcc;
    --sage-300: #b5bfa8;
    --sage-400: #94a080;
    --sage-500: #778564;
    --sage-600: #5d6a4d;

    --warm-50: #fffbeb;
    --warm-100: #fef3c7;
    --warm-200: #fde68a;
    --warm-300: #fcd34d;
    --warm-400: #fbbf24;

    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;

    --text-primary: #1a2e2a;
    --text-secondary: #4a6660;
    --text-muted: #7a948d;
    --text-light: #ffffff;

    --bg-primary: #faf9f7;
    --bg-cream: #f5f0e8;
    --bg-dark: #1a2e2a;
    --bg-dark-lighter: #243d38;

    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===========================
   Typography
   =========================== */
.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-600);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.center {
    text-align: center;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-600);
    color: white;
    border-color: var(--teal-600);
}

.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.1em;
}

/* ===========================
   Navigation
   =========================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s;
}

.site-nav.scrolled,
.site-nav.site-nav-dark {
    background: rgba(26, 46, 42, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-paw {
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    background: var(--teal-500);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--teal-400) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===========================
   Hero
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d947e 0%, #14b89a 40%, #2dd4b3 70%, #5fe9cb 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(94, 233, 203, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 148, 126, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal-300);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title em {
    color: var(--warm-300);
    font-style: italic;
}

.hero-logo {
    height: 1em;
    vertical-align: middle;
    margin-left: 0.2rem;
    display: inline-block;
    border-radius: 50%;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===========================
   Social Proof Bar
   =========================== */
.proof-bar {
    background: var(--bg-dark);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.proof-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--teal-300);
}

.proof-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===========================
   Section Spacing
   =========================== */
.section {
    padding: 6rem 0;
}

/* ===========================
   About
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-img-placeholder {
    aspect-ratio: 3/4;
    background: var(--sage-100);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px dashed var(--sage-300);
}

.about-img-placeholder span {
    font-size: 4rem;
}

.about-img-placeholder p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.btn-read-more {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--teal-600);
    border: 1px solid var(--teal-300);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-read-more:hover {
    background: var(--teal-50);
}

/* ===========================
   Expect / Services Grid
   =========================== */
.section-expect {
    background: var(--bg-cream);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.expect-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.expect-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.expect-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.expect-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.expect-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   Testimonials
   =========================== */
.section-testimonials {
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-600);
}

/* ===========================
   Pet Grief Coaching — NEW
   =========================== */
.section-pet-grief {
    background: linear-gradient(135deg, #1a2e2a 0%, #0d3d35 100%);
    color: white;
}

.section-pet-grief .section-label {
    color: var(--teal-300);
}

.section-pet-grief .section-title {
    color: white;
}

.pet-grief-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.new-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--warm-300), var(--warm-400));
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pet-grief-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.pet-grief-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.pet-grief-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.pet-grief-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-300);
    font-weight: 700;
}

.pet-grief-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--warm-300);
}

.price-detail {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.pet-grief-img-placeholder {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px dashed rgba(255, 255, 255, 0.15);
}

.pet-grief-img-placeholder span {
    font-size: 4rem;
}

.pet-grief-img-placeholder p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===========================
   Blog Cards
   =========================== */
.section-blog {
    background: var(--bg-cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 160px;
    background: linear-gradient(135deg, var(--sage-100), var(--teal-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-tag {
    display: inline-block;
    background: var(--teal-100);
    color: var(--teal-700);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.blog-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-600);
    text-decoration: none;
}

.blog-read-more:hover {
    color: var(--teal-700);
}

/* ===========================
   Resources Grid
   =========================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.resource-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.resource-card .resource-img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    background: var(--sage-50);
    padding: 1rem;
}

.resource-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-body h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.resource-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.resource-list {
    list-style: none;
    margin: 0.5rem 0 1rem;
    padding: 0;
}

.resource-list li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.resource-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-500);
    font-weight: 700;
}

.resource-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.resource-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===========================
   CTA Section
   =========================== */
.section-cta {
    background: white;
    text-align: center;
}

.section-cta .section-label {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.cta-content {
    max-width: 700px;
}

.cta-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===========================
   Newsletter
   =========================== */
.section-newsletter {
    background: var(--sage-50);
    padding: 3.5rem 0;
    border-top: 1px solid var(--sage-200);
    border-bottom: 1px solid var(--sage-200);
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.newsletter-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--sage-300);
    border-radius: var(--radius-xl);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    background: white;
    transition: border-color 0.2s;
}

.newsletter-input:focus {
    border-color: var(--teal-500);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 3rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: white;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ===========================
   Animations
   =========================== */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.expect-card:nth-child(2) {
    transition-delay: 0.1s;
}

.expect-card:nth-child(3) {
    transition-delay: 0.2s;
}

.expect-card:nth-child(4) {
    transition-delay: 0.3s;
}

.expect-card:nth-child(5) {
    transition-delay: 0.4s;
}

.expect-card:nth-child(6) {
    transition-delay: 0.5s;
}

.testimonial-card:nth-child(2) {
    transition-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
    transition-delay: 0.2s;
}

.blog-card:nth-child(2) {
    transition-delay: 0.1s;
}

.blog-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* ===========================
   Mobile Responsive
   =========================== */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expect-grid,
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .pet-grief-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

    .proof-items {
        gap: 1.5rem;
    }

    .proof-number {
        font-size: 1.2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .pet-grief-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ===========================
   Work With Me
   =========================== */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
}

.feature-list li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    top: 0.55rem;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .work-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .work-image {
        position: static !important;
    }
}

/* ===========================
   Resources / Products
   =========================== */
.section-resources {
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.resource-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.resource-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--sage-100);
}

.resource-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.resource-body h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.resource-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.resource-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.resource-list li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    top: 0.4rem;
    font-size: 0.8rem;
}

.resource-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resource-meta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Ghost Koenig Editor Required Classes
   =========================== */
.kg-width-wide {
    width: 100vw;
    max-width: 1040px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.kg-width-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}