/* UNIQUE STRUCTURE - Ireland Jail Museums - Complete Redesign */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2a;
    --accent-color: #6b8e23;
    --metal-color: #3a3a3a;
    --rust-color: #8b4513;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #e8e8e8;
    --medium-text: #b0b0b0;
    --border-color: #2a2a2a;
    --card-bg: #1a1a1a;
    --hover-color: #5a7a1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(107, 142, 35, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.nav-link {
    font-family: 'Inter', sans-serif;
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 0.3rem;
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.hero-left {
    flex: 1;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--darker-bg));
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--medium-text);
    margin-bottom: 3rem;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-main {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn-hero-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--light-text);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-hero-secondary:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: var(--darker-bg);
}

.hero-overlay-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(107, 142, 35, 0.1) 50px, rgba(107, 142, 35, 0.1) 52px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(45, 80, 22, 0.1) 50px, rgba(45, 80, 22, 0.1) 52px);
    pointer-events: none;
}

/* Timeline Diagonal */
.timeline-diagonal {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.timeline-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--dark-bg);
    transform: skewY(2deg);
}

.timeline-diagonal::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--dark-bg);
    transform: skewY(2deg);
}

.timeline-wrapper {
    transform: skewY(2deg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.timeline-item.timeline-left {
    flex-direction: row;
}

.timeline-item.timeline-right {
    flex-direction: row-reverse;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    min-width: 150px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.8);
    border-left: 4px solid var(--accent-color);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.timeline-content p {
    color: var(--medium-text);
    line-height: 1.8;
}

/* About Asymmetric Grid */
.about-asymmetric {
    padding: 6rem 2rem;
    background: var(--darker-bg);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    grid-template-areas: 
        "large block1 block2"
        "large block3 block3";
}

.about-block-large {
    grid-area: large;
    padding: 4rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--accent-color);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
}

.about-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.about-block-large h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.about-block-large p {
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-about-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-about-link:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateX(10px);
}

.about-block-small {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-block-1 {
    grid-area: block1;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.about-block-2 {
    grid-area: block2;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.about-block-3 {
    grid-area: block3;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.about-block-small:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.block-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.block-icon i {
    font-size: 3rem;
}

.about-block-small h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.about-block-small p {
    color: var(--medium-text);
}

/* Visiting Split Cards */
.visiting-split {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.visiting-card {
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visiting-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 142, 35, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visiting-card:hover::before {
    opacity: 1;
}

.visiting-card-1 {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.visiting-card-2 {
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.visiting-card-3 {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.visiting-card-4 {
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.visiting-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-color);
}

.card-icon i {
    font-size: 3rem;
}

.visiting-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.visiting-card p {
    color: var(--medium-text);
    line-height: 1.8;
}

/* Exhibition Overlay */
.exhibition-overlay {
    position: relative;
    padding: 8rem 2rem;
    background: var(--darker-bg);
    overflow: hidden;
}

.exhibition-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(5, 5, 5, 0.95), rgba(45, 80, 22, 0.8)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.exhibition-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--accent-color);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.exhibition-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--dark-bg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.exhibition-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.exhibition-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-style: italic;
}

.exhibition-content p {
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.exhibition-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    color: var(--medium-text);
}

.detail-item strong {
    color: var(--accent-color);
}

.btn-exhibition-main {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-exhibition-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--light-text);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.cta-title-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.cta-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.cta-text {
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light-text);
    border: 2px solid var(--accent-color);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--light-text);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-cta-secondary:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--darker-bg) !important;
    border-top: 1px solid rgba(107, 142, 35, 0.2);
    padding: 3rem 0 2rem 0;
}

footer h5 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer a {
    color: var(--medium-text);
    transition: color 0.3s ease;
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-color) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "large"
            "block1"
            "block2"
            "block3";
    }
    
    .visiting-split {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-number {
        font-size: 4rem;
    }
    
    .exhibition-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-title-wrapper h2 {
        font-size: 2.5rem;
    }
}

/* Booking Page Styles */
.booking-hero {
    padding: 8rem 2rem 4rem;
    background: var(--darker-bg);
    text-align: center;
}

.min-vh-50 {
    min-height: 50vh;
}

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.booking-subtitle {
    font-size: 1.3rem;
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto;
}

.booking-info-section {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.booking-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.booking-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.booking-intro .lead {
    font-size: 1.2rem;
    color: var(--medium-text);
    line-height: 1.8;
}

.booking-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method-card {
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.contact-method-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.method-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.contact-method-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.contact-method-card > p {
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    color: var(--medium-text);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.hours {
    color: var(--light-text);
    font-weight: 500;
}

.booking-requirements {
    margin: 4rem 0;
}

.booking-requirements h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.requirement-item {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.requirement-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.requirement-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.requirement-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.requirement-item p {
    color: var(--medium-text);
    line-height: 1.8;
}

.booking-details {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--border-color);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.booking-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.booking-details > p {
    color: var(--medium-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-list {
    list-style: none;
    padding: 0;
}

.booking-list li {
    padding: 1rem 0;
    color: var(--medium-text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.booking-list li:last-child {
    border-bottom: none;
}

.booking-list li i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.booking-address {
    margin: 4rem 0;
}

.booking-address h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
}

.address-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid var(--border-color);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.address-card i {
    font-size: 3rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.address-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.address-content p {
    color: var(--medium-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .booking-title {
        font-size: 2.5rem;
    }
    
    .booking-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility */
.text-primary {
    color: var(--accent-color) !important;
}

.text-muted {
    color: var(--medium-text) !important;
}
