/* Israel Discovery Website - Main Stylesheet */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    padding-top: 70px; /* Account for fixed navbar */
}

/* Color Variables */
:root {
    --primary-blue: #1E3A8A;
    --accent-gold: #F59E0B;
    --light-bg: #FAFAFA;
    --text-dark: #374151;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Navigation */
.navbar {
    background-color: var(--primary-blue);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 58, 138, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
}

.hero-content p,
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #D97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main-content {
    min-height: 60vh;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Story Cards */
.story-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.story-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.story-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-meta {
    margin-bottom: 12px;
}

.story-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.story-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-dark);
}

.story-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.story-quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 12px;
    border-left: 2px solid var(--accent-gold);
}

.story-link {
    display: inline-block;
    margin-top: auto;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.story-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Featured Stories */
.featured-stories {
    background-color: var(--white);
    padding: 60px 0;
}

.featured-stories-container {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.featured-story {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
}

.featured-story-inner {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .featured-story-inner {
        flex-direction: row;
        min-height: 550px;
        height: auto;
    }
}

.featured-story-image {
    flex: 1;
    overflow: hidden;
}

.featured-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-story:hover .featured-story-image img {
    transform: scale(1.05);
}

.featured-story-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--white);
    position: relative;
    overflow: visible;
}

.featured-story-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.2;
}

.featured-story-excerpt {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.featured-story-quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 3px solid var(--accent-gold);
}

.featured-story-details {
    margin-bottom: 20px;
}

.featured-story-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.featured-story-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 15px;
}

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

.featured-story-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: 3px solid white;
    position: relative;
    z-index: 10;
}

.featured-story-button:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* More Stories Section */
.more-stories {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 15px auto 0;
}

.stories-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stories-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.pagination-link.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.pagination-link:hover:not(.active) {
    background-color: #f0f0f0;
}

.pagination-link.next {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

/* Quick Facts */
.quick-facts {
    background-color: var(--primary-blue);
    color: var(--white);
}

.quick-facts .section-title {
    color: var(--white);
}

.fact-item {
    text-align: center;
    padding: 1.5rem;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.fact-label {
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

/* Story Categories */
.story-categories {
    padding: 60px 0;
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.category-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.story-count {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.category-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.category-button:hover {
    background-color: var(--primary-blue);
}

/* Share Your Story */
.share-story {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.share-story-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.share-story-content {
    flex: 1;
    padding: 40px;
}

.share-story-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.share-story-text {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.share-story-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.share-story-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.share-story-benefits i {
    color: var(--accent-gold);
    margin-right: 10px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.sticky-buttons {
    position: sticky;
    bottom: 20px;
    z-index: 10;
}

.primary-button {
    background-color: var(--primary-blue);
}

.secondary-button {
    background-color: var(--accent-gold);
}

.share-story-button {
    display: inline-block;
    padding: 12px 25px;
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}

.share-story-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.share-story-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

.share-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.share-story-image img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid #4B5563;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #D1D5DB;
}

/* Page-specific Styles */
.resources-section,
.stories-section,
.myths-section,
.culture-section,
.travel-section {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.resources-section:nth-child(even),
.stories-section:nth-child(even),
.myths-section:nth-child(even),
.culture-section:nth-child(even),
.travel-section:nth-child(even) {
    background-color: var(--white);
}

.resources-grid,
.stories-grid,
.myths-grid,
.culture-grid,
.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card,
.story-card,
.myth-card,
.culture-card,
.travel-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-gold);
}

.resource-card:hover,
.story-card:hover,
.myth-card:hover,
.culture-card:hover,
.travel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.resource-header,
.story-header,
.myth-header,
.culture-header,
.travel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.resource-icon,
.story-icon,
.myth-icon,
.culture-icon,
.travel-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.resource-type,
.story-type,
.myth-type,
.culture-type,
.travel-type {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p,
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .feature {
        text-align: center;
        flex-direction: column;
    }

    .resources-grid,
    .stories-grid,
    .myths-grid,
    .culture-grid,
    .travel-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section {
        padding: 2rem 0;
    }
    
    /* Responsive Featured Stories */
    .featured-story-inner {
        flex-direction: column;
        height: auto;
    }
    
    .featured-story-image img {
        height: 250px;
    }
    
    .featured-story-title {
        font-size: 1.6rem;
    }
    
    .featured-story-excerpt {
        font-size: 1rem;
    }
    
    /* Responsive More Stories */
    .stories-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-card {
        max-width: 100%;
    }
    
    /* Responsive Story Categories */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Responsive Share Your Story */
    .share-story-container {
        flex-direction: column-reverse;
    }
    
    .share-story-image {
        height: 250px;
        width: 100%;
    }
    
    .share-story-content {
        padding: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .resource-card,
    .story-card,
    .myth-card,
    .culture-card,
    .travel-card {
        padding: 1rem;
    }

    .resource-header,
    .story-header,
    .myth-header,
    .culture-header,
    .travel-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .resource-type,
    .story-type,
    .myth-type,
    .culture-type,
    .travel-type {
        margin-left: 0;
    }
    
    .featured-story-content {
        padding: 20px;
    }
    
    .featured-story-title {
        font-size: 1.4rem;
    }
    
    .story-image img {
        height: 180px;
    }
    
    .story-content {
        padding: 15px;
    }
    
    .story-title {
        font-size: 1.2rem;
    }
    
    .pagination-link {
        width: 35px;
        height: 35px;
        margin: 0 3px;
    }
    
    /* Smaller screens Categories */
    .category-card {
        padding: 20px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    /* Smaller screens Share Story */
    .share-story-title {
        font-size: 1.6rem;
    }

    .share-story-content {
        padding: 20px;
    }

    .share-story-image {
        height: 200px;
    }

    .share-story-button {
        width: 100%;
        text-align: center;
    }

    /* Responsive Single Story */
    .story-title {
        font-size: 2rem;
    }

    .story-header,
    .story-content,
    .story-footer {
        padding: 1.5rem;
    }

    .story-image-container {
        height: 250px;
    }

    .story-actions {
        flex-direction: column;
    }

    .story-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Single Story Page */
.story-back {
    margin-bottom: 2rem;
}

.single-story {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
}

.story-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.story-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.story-author {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.story-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-footer {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    background-color: var(--light-bg);
}

.story-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.related-stories {
    margin-top: 4rem;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}