/**
 * Content Loader Styles
 * Styles for dynamically loaded content sections
 * RTL support for Hebrew text
 */

/* Content Section Display */
.content-section-display {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    min-height: 400px;
    direction: rtl;
    unicode-bidi: embed;
    transition: margin 0.3s ease-in-out;
}

.content-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    direction: rtl;
    unicode-bidi: embed;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    direction: rtl;
    unicode-bidi: embed;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4 {
    color: #2d7a4f;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-body p {
    margin-bottom: 15px;
}

.content-body ul,
.content-body ol {
    margin-bottom: 15px;
    padding-right: 30px;
}

.content-body li {
    margin-bottom: 8px;
}

.content-body a {
    color: #2d7a4f;
    text-decoration: none;
    border-bottom: 1px solid #2d7a4f;
    transition: color 0.3s ease;
}

.content-body a:hover {
    color: #1e5a3a;
}

/* Hours Section */
.content-hours {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    direction: rtl;
    unicode-bidi: embed;
}

.content-hours h3 {
    color: #2d7a4f;
    font-size: 1.5rem;
    margin-bottom: 15px;
    direction: rtl;
    unicode-bidi: embed;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    direction: rtl;
    unicode-bidi: embed;
}

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

.hours-list strong {
    color: #333;
    margin-left: 10px;
}

/* Updated Timestamp */
.content-updated {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Loading State */
.content-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 40px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2d7a4f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.content-loading p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #2d7a4f;
}

/* Error State */
.content-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 40px;
    text-align: center;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.content-error h3 {
    color: #dc3545;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.content-error p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.retry-button {
    background: #2d7a4f;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-button:hover {
    background: #1e5a3a;
    transform: translateY(-2px);
}

/* Content Container */
#contentDisplay {
    display: none;
    margin-top: 20px;
    background: #f8f9fa;
}

#contentDisplay.visible {
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-section-display {
        padding: 30px 15px;
    }

    .content-title {
        font-size: 2rem;
    }

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

    .content-hours {
        padding: 20px;
    }

    .hours-list li {
        font-size: 1rem;
    }
    
    .content-loading,
    .content-error {
        min-height: 300px;
        padding: 30px 15px;
    }
    
    .content-error h3 {
        font-size: 1.5rem;
    }
    
    .content-error p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-section-display {
        padding: 20px 10px;
        min-height: 300px;
    }

    .content-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .content-body {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .content-body h1 {
        font-size: 1.5rem;
    }
    
    .content-body h2 {
        font-size: 1.3rem;
    }
    
    .content-body h3 {
        font-size: 1.1rem;
    }
    
    .content-body h4 {
        font-size: 1rem;
    }
    
    .content-hours {
        padding: 15px;
    }
    
    .content-hours h3 {
        font-size: 1.2rem;
    }
    
    .hours-list li {
        font-size: 0.95rem;
        padding: 8px 0;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
    
    .content-loading p {
        font-size: 1rem;
    }

    .error-icon {
        font-size: 3rem;
    }
    
    .content-error h3 {
        font-size: 1.3rem;
    }
    
    .content-error p {
        font-size: 0.95rem;
    }
    
    .retry-button {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .content-updated {
        font-size: 0.85rem;
    }
}

/* Animation for content appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section-display {
    animation: fadeIn 0.5s ease-out;
}

/* Remove this section - handled by sidebar.css */

/* Phone Directory Styles */
.phone-directory {
    direction: rtl;
    unicode-bidi: embed;
}

.phone-directory .phone-directory-entries {
    margin-top: 30px;
}

.phone-category {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    direction: rtl;
    unicode-bidi: embed;
}

.category-title {
    color: #2d7a4f;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2d7a4f;
    direction: rtl;
    unicode-bidi: embed;
}

.phone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phone-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    direction: rtl;
}

.phone-entry:last-child {
    border-bottom: none;
}

.entry-name {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    direction: rtl;
    unicode-bidi: embed;
}

.entry-phone {
    font-size: 1.1rem;
    color: #2d7a4f;
    font-weight: 600;
    direction: ltr;
    unicode-bidi: embed;
}

.no-entries {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    margin-top: 20px;
}

/* Mobile Responsiveness for Phone Directory */
@media (max-width: 768px) {
    .phone-category {
        padding: 20px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .entry-name,
    .entry-phone {
        font-size: 1rem;
    }

    .phone-entry {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .phone-category {
        padding: 15px;
        margin-bottom: 20px;
    }

    .category-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .phone-entry {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
        gap: 5px;
    }

    .entry-name {
        font-size: 0.95rem;
    }

    .entry-phone {
        font-size: 1rem;
        color: #2d7a4f;
    }

    .no-entries {
        font-size: 1rem;
        padding: 30px 15px;
    }
}


/* Events Calendar Styles */
.events-calendar {
    direction: rtl;
    unicode-bidi: embed;
}

/* Calendar Navigation */
.calendar-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.calendar-nav-btn {
    background: #2d7a4f;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: #1e5a3a;
    transform: scale(1.1);
}

.calendar-month-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    min-width: 180px;
    text-align: center;
}

/* Calendar Grid */
.calendar-grid {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 25px;
}

.calendar-header-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-day-header {
    text-align: center;
    font-weight: bold;
    color: #2d7a4f;
    padding: 10px 5px;
    font-size: 1rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: #f8f9fa;
    min-height: 50px;
}

.calendar-day:hover:not(.empty) {
    background: #e8f5e9;
    transform: scale(1.05);
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.today {
    background: #e3f2fd;
    border: 2px solid #2196f3;
}

.calendar-day.selected {
    background: #2d7a4f;
    color: white;
}

.calendar-day.selected .day-number {
    color: white;
}

.calendar-day.has-events {
    background: #fff3e0;
}

.calendar-day.has-events:hover {
    background: #ffe0b2;
}

.day-number {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.event-indicator {
    position: absolute;
    bottom: 5px;
    background: #ff9800;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Selected Date Events */
.selected-date-events {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    min-height: 100px;
}

.selected-date-title {
    color: #2d7a4f;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2d7a4f;
}

.no-events {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    padding: 30px 20px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border-right: 4px solid #2d7a4f;
    position: relative;
}

.event-card .whatsapp-share-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.event-card .whatsapp-share-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.event-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.event-time,
.event-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
}

.event-description {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}

.event-image {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* Mobile Responsiveness for Events Calendar */
@media (max-width: 768px) {
    .calendar-navigation {
        gap: 15px;
        padding: 12px;
    }

    .calendar-month-year {
        font-size: 1.3rem;
        min-width: 150px;
    }

    .calendar-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .calendar-grid {
        padding: 15px;
    }

    .calendar-day-header {
        font-size: 0.9rem;
        padding: 8px 3px;
    }

    .calendar-day {
        min-height: 45px;
    }

    .day-number {
        font-size: 1rem;
    }

    .event-indicator {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
    }

    .selected-date-events {
        padding: 20px;
    }

    .selected-date-title {
        font-size: 1.2rem;
    }

    .event-card {
        padding: 12px;
    }

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

@media (max-width: 480px) {
    .calendar-navigation {
        gap: 10px;
        padding: 10px;
    }

    .calendar-month-year {
        font-size: 1.1rem;
        min-width: 120px;
    }

    .calendar-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .calendar-grid {
        padding: 10px;
    }

    .calendar-header-row,
    .calendar-days {
        gap: 3px;
    }

    .calendar-day-header {
        font-size: 0.8rem;
        padding: 6px 2px;
    }

    .calendar-day {
        min-height: 40px;
        border-radius: 6px;
    }

    .day-number {
        font-size: 0.9rem;
    }

    .event-indicator {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
        bottom: 3px;
    }

    .selected-date-events {
        padding: 15px;
    }

    .selected-date-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .no-events {
        font-size: 1rem;
        padding: 20px 15px;
    }

    .event-card {
        padding: 10px;
        border-right-width: 3px;
    }

    .event-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .event-time,
    .event-location {
        font-size: 0.9rem;
    }

    .event-description {
        font-size: 0.95rem;
    }
    
    .event-image {
        margin-top: 12px;
    }
    
    .event-image img {
        max-height: 300px;
    }
}

/* ===================================
   Businesses Directory Styles
   =================================== */

.businesses-directory {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.business-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-right: 4px solid #2d7a4f;
    position: relative;
}

.business-card .whatsapp-share-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.business-card .whatsapp-share-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.business-media {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

.business-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-info {
    padding: 25px;
    direction: rtl;
    unicode-bidi: embed;
}

.business-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d7a4f;
    margin: 0 0 15px 0;
    text-align: right;
}

.business-phone,
.business-website {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: right;
}

.business-label {
    font-weight: 600;
    color: #555;
    font-size: 1rem;
}

.business-phone-link,
.business-website-link {
    color: #667eea;
    text-decoration: none;
    direction: ltr;
    unicode-bidi: embed;
    transition: color 0.2s ease;
}

.business-phone-link:hover,
.business-website-link:hover {
    color: #2d7a4f;
    text-decoration: underline;
}

.business-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    line-height: 1.6;
    text-align: right;
    white-space: pre-wrap;
}

.no-businesses {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: #999;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .businesses-directory {
        padding: 20px 15px;
    }

    .businesses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .business-media {
        height: 200px;
    }

    .business-info {
        padding: 20px;
    }

    .business-name {
        font-size: 1.3rem;
    }

    .business-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .businesses-directory {
        padding: 15px 10px;
    }

    .business-media {
        height: 180px;
    }

    .business-info {
        padding: 15px;
    }

    .business-name {
        font-size: 1.2rem;
    }

    .business-phone,
    .business-website {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ===== Protocols Section ===== */
.protocols-directory {
    direction: rtl;
    unicode-bidi: embed;
}

.protocols-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.protocol-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-right: 4px solid #2d7a4f;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.protocol-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.protocol-info {
    flex: 1;
}

.protocol-subject {
    font-size: 1.3rem;
    color: #2d7a4f;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.protocol-date {
    font-size: 0.9rem;
    color: #888;
    display: inline-block;
    margin-bottom: 6px;
}

.protocol-description {
    font-size: 1rem;
    color: #555;
    margin: 5px 0 0 0;
    line-height: 1.6;
}

.protocol-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-right: 20px;
}

.protocol-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.protocol-view-btn {
    background: #667eea;
    color: white;
}

.protocol-view-btn:hover {
    background: #5a6fd6;
}

.protocol-download-btn {
    background: #2d7a4f;
    color: white;
}

.protocol-download-btn:hover {
    background: #245f3e;
}

.no-protocols {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 1.2rem;
}

.no-file {
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .protocol-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .protocol-actions {
        margin-right: 0;
        width: 100%;
    }

    .protocol-btn {
        flex: 1;
        justify-content: center;
    }
}


/* Archive Styles */
.archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    direction: rtl;
}

.archive-title {
    font-size: 2.5rem;
    color: #2d7a4f;
    text-align: center;
    margin-bottom: 40px;
}

.archive-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.archive-tab-button {
    background: white;
    border: 2px solid #2d7a4f;
    color: #2d7a4f;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.archive-tab-button:hover {
    background: #f0f8f4;
    transform: translateY(-2px);
}

.archive-tab-button.active {
    background: #2d7a4f;
    color: white;
}

.archive-tabs-content {
    min-height: 400px;
}

.archive-tab-description {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.archive-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.archive-story-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-right: 4px solid #2d7a4f;
}

.archive-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.archive-story-title {
    font-size: 1.5rem;
    color: #2d7a4f;
    margin-bottom: 15px;
}

.archive-story-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.archive-story-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.archive-story-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.archive-story-content p {
    margin-bottom: 10px;
}

.archive-story-files {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.archive-story-file-link {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f8f4;
    color: #2d7a4f;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.archive-story-file-link:hover {
    background: #2d7a4f;
    color: white;
}

.archive-story-date {
    font-size: 0.9rem;
    color: #999;
    text-align: left;
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    margin-top: 15px;
}

.archive-empty {
    text-align: center;
    font-size: 1.2rem;
    color: #999;
    padding: 60px 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .archive-title {
        font-size: 2rem;
    }

    .archive-tabs-nav {
        flex-direction: column;
    }

    .archive-tab-button {
        width: 100%;
    }

    .archive-stories-grid {
        grid-template-columns: 1fr;
    }

    .archive-story-images {
        grid-template-columns: 1fr;
    }
}
