/* ============================================
   MINE SLOT - Pixel Mining Theme
   Simple, Light, Game-Inspired
   ============================================ */

/* Google Fonts - Pixel style + Clean readable */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   CSS Variables - Mining Color Palette
   ============================================ */
:root {
    /* Sky & Background */
    --sky-light: #87CEEB;
    --sky-blue: #5BA4D4;
    --white: #FFFFFF;
    
    /* Earth Tones */
    --grass-green: #5D8C3E;
    --grass-light: #7CB342;
    --dirt-brown: #8B5A2B;
    --dirt-dark: #6B4423;
    --stone-gray: #808080;
    --stone-light: #A0A0A0;
    
    /* Precious */
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --diamond: #4DD0E1;
    --diamond-dark: #00ACC1;
    
    /* UI Colors */
    --text-dark: #2D2D2D;
    --text-medium: #555555;
    --text-light: #777777;
    --border-color: #E0E0E0;
    --bg-light: #F8F9FA;
    --bg-card: #FFFFFF;
    
    /* Warning/Safety */
    --warning-red: #E53935;
    --warning-bg: #FFEBEE;
    --success-green: #43A047;
    
    /* Fonts */
    --font-pixel: 'Press Start 2P', cursive;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    
    /* Container */
    --container-max: 1100px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--grass-light);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 {
    font-family: var(--font-pixel);
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    color: var(--dirt-dark);
}

h3 {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
}

p {
    margin-bottom: var(--space-sm);
}

/* ============================================
   Container
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* ============================================
   Responsible Gambling Banner (Always Visible)
   ============================================ */
.responsible-banner {
    background: var(--warning-bg);
    border-bottom: 2px solid var(--warning-red);
    padding: var(--space-xs) var(--space-sm);
    text-align: center;
    font-size: 0.85rem;
    color: var(--warning-red);
}

.responsible-banner a {
    color: var(--warning-red);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    background: var(--white);
    border-bottom: 3px solid var(--grass-green);
    padding: var(--space-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo__img {
    height: 40px;
    width: auto;
    image-rendering: pixelated;
}

.logo__text {
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    color: var(--dirt-dark);
}

/* Navigation */
.nav {
    display: none;
}

.nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--grass-green);
    padding: var(--space-sm);
    box-shadow: var(--shadow-md);
}

.nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.nav__link {
    display: block;
    padding: var(--space-xs) var(--space-sm);
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.nav__link:hover {
    background: var(--bg-light);
    color: var(--grass-green);
}

.nav__link--cta {
    background: var(--grass-green);
    color: var(--white) !important;
    font-weight: 600;
    text-align: center;
}

.nav__link--cta:hover {
    background: var(--grass-light);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--dirt-dark);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.mobile-menu-btn--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn--active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .nav__list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .nav__link {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(180deg, var(--sky-light) 0%, var(--sky-blue) 100%);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Pixel clouds decoration */
.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    width: 80px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-sm);
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 15%;
    width: 60px;
    height: 30px;
    background: var(--white);
    border-radius: var(--radius-sm);
    opacity: 0.6;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__grid {
    display: grid;
    gap: var(--space-lg);
}

.hero__image {
    border: 4px solid var(--dirt-dark);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    image-rendering: auto;
}

.hero__title {
    color: var(--white);
    text-shadow: 2px 2px 0 var(--dirt-dark);
    font-size: 1.1rem;
}

.hero__subtitle {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

/* Quick Facts Box */
.quick-facts {
    background: var(--white);
    border: 3px solid var(--dirt-dark);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
}

.quick-facts__title {
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    color: var(--dirt-dark);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px dashed var(--border-color);
}

.quick-facts__list {
    list-style: none;
    display: grid;
    gap: var(--space-xs);
}

.quick-facts__item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.quick-facts__item:last-child {
    border-bottom: none;
}

.quick-facts__label {
    color: var(--text-light);
}

.quick-facts__value {
    font-weight: 600;
    color: var(--text-dark);
}

.quick-facts__value--highlight {
    color: var(--grass-green);
}

@media (min-width: 768px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .hero__title {
        font-size: 1.5rem;
    }
}

/* ============================================
   Content Sections
   ============================================ */
.section {
    padding: var(--space-xl) 0;
}

.section--white {
    background: var(--white);
}

.section--light {
    background: var(--bg-light);
}

.section--earth {
    background: linear-gradient(180deg, var(--grass-light) 0%, var(--grass-green) 4px, var(--dirt-brown) 4px, var(--dirt-brown) 100%);
    color: var(--white);
}

.section__title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--grass-green);
    margin: var(--space-sm) auto 0;
}

/* ============================================
   Cards
   ============================================ */
.card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card--featured {
    border-color: var(--gold);
    border-width: 3px;
}

.card__image {
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.card__title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.card__text {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ============================================
   Experience Section (First Person Review)
   ============================================ */
.experience {
    background: var(--white);
    border-left: 4px solid var(--grass-green);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.experience__quote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: var(--space-sm);
}

.experience__author {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   Game Info Tables
   ============================================ */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
    font-size: 0.9rem;
}

.info-table th,
.info-table td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.info-table tr:hover {
    background: var(--bg-light);
}

.info-table__icon {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
    vertical-align: middle;
    margin-right: var(--space-xs);
}

/* ============================================
   Symbol Grid
   ============================================ */
.symbol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.symbol-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
}

.symbol-card__img {
    width: 48px;
    height: 48px;
    image-rendering: pixelated;
}

.symbol-card__name {
    font-weight: 600;
    font-size: 0.9rem;
}

.symbol-card__desc {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .symbol-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Casino Cards
   ============================================ */
.casino-list {
    display: grid;
    gap: var(--space-md);
}

.casino-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: grid;
    gap: var(--space-sm);
}

.casino-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.casino-card__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    padding: var(--space-xs);
}

.casino-card__name {
    font-weight: 700;
    font-size: 1.1rem;
}

.casino-card__bonus {
    font-size: 0.85rem;
    color: var(--grass-green);
    font-weight: 500;
}

.casino-card__pros,
.casino-card__cons {
    font-size: 0.9rem;
    padding-left: var(--space-sm);
}

.casino-card__pros li {
    color: var(--success-green);
    margin-bottom: var(--space-xs);
}

.casino-card__cons li {
    color: var(--warning-red);
    margin-bottom: var(--space-xs);
}

.casino-card__cta {
    display: inline-block;
    background: var(--grass-green);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease;
}

.casino-card__cta:hover {
    background: var(--grass-light);
    color: var(--white);
}

@media (min-width: 768px) {
    .casino-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Verdict Section
   ============================================ */
.verdict {
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.verdict__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.verdict__score {
    font-family: var(--font-pixel);
    font-size: 1.5rem;
    color: var(--gold-dark);
}

.verdict__label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.verdict__grid {
    display: grid;
    gap: var(--space-md);
}

.verdict__pros,
.verdict__cons {
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.verdict__pros {
    background: #E8F5E9;
    border: 1px solid var(--success-green);
}

.verdict__cons {
    background: var(--warning-bg);
    border: 1px solid var(--warning-red);
}

.verdict__list-title {
    font-family: var(--font-pixel);
    font-size: 0.65rem;
    margin-bottom: var(--space-sm);
}

.verdict__list {
    list-style: none;
}

.verdict__list li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
}

.verdict__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
}

.verdict__cons .verdict__list li::before {
    content: '✗';
    color: var(--warning-red);
}

@media (min-width: 768px) {
    .verdict__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--grass-green);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--text-medium);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
}

.btn--primary {
    background: var(--grass-green);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--grass-light);
    color: var(--white);
}

.btn--secondary {
    background: var(--white);
    color: var(--grass-green);
    border: 2px solid var(--grass-green);
}

.btn--secondary:hover {
    background: var(--grass-green);
    color: var(--white);
}

.btn--gold {
    background: var(--gold);
    color: var(--dirt-dark);
}

.btn--gold:hover {
    background: var(--gold-dark);
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
    padding: var(--space-sm) 0;
    font-size: 0.85rem;
}

.breadcrumb__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.breadcrumb__item::after {
    content: '>';
    color: var(--text-light);
}

.breadcrumb__item:last-child::after {
    display: none;
}

.breadcrumb__link {
    color: var(--grass-green);
}

.breadcrumb__current {
    color: var(--text-light);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dirt-dark);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer__title {
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-xs);
}

.footer__links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
}

.footer__badge {
    height: 40px;
    width: auto;
}

.footer__affiliate {
    background: rgba(0,0,0,0.2);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-md);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.hidden { display: none; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   Responsive Images
   ============================================ */
.img-responsive {
    width: 100%;
    height: auto;
}

.img-pixel {
    image-rendering: pixelated;
}

/* ============================================
   Screenshot Gallery
   ============================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.gallery__item {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.gallery__item:hover {
    transform: scale(1.02);
}

.gallery__item img {
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   Warning/Info Boxes
   ============================================ */
.info-box {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

.info-box--warning {
    background: var(--warning-bg);
    border: 1px solid var(--warning-red);
    color: var(--warning-red);
}

.info-box--info {
    background: #E3F2FD;
    border: 1px solid var(--sky-blue);
    color: var(--text-dark);
}

.info-box--success {
    background: #E8F5E9;
    border: 1px solid var(--success-green);
    color: var(--text-dark);
}

.info-box__title {
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

/* ============================================
   Page Specific - How to Play Steps
   ============================================ */
.steps {
    counter-reset: step;
}

.step {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px dashed var(--border-color);
}

.step:last-child {
    border-bottom: none;
}

.step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--grass-green);
    color: var(--white);
    font-family: var(--font-pixel);
    font-size: 0.8rem;
    border-radius: 50%;
}

.step__content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.step__image {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

@media (min-width: 768px) {
    .step {
        grid-template-columns: auto 1fr 300px;
        align-items: start;
    }
}

/* ============================================
   Table of Contents
   ============================================ */
.toc {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.toc__title {
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    margin-bottom: var(--space-sm);
}

.toc__list {
    list-style: none;
    counter-reset: toc;
}

.toc__list li {
    counter-increment: toc;
    padding: var(--space-xs) 0;
    border-bottom: 1px dashed var(--border-color);
}

.toc__list li:last-child {
    border-bottom: none;
}

.toc__list a {
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.toc__list a::before {
    content: counter(toc) ".";
    color: var(--grass-green);
    font-weight: 600;
    margin-right: var(--space-xs);
    min-width: 24px;
}

.toc__list a:hover {
    color: var(--grass-green);
}

/* ============================================
   Resource Links (Responsible Gambling)
   ============================================ */
.resource-list {
    display: grid;
    gap: var(--space-md);
}

.resource-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.resource-card__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.resource-card__name {
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.resource-card__link {
    color: var(--grass-green);
    font-weight: 500;
}

.resource-card__phone {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .footer,
    .responsible-banner,
    .nav,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}



