/*
Theme Name: Srce Kragujevca
Description: A custom WordPress theme for Srce Kragujevca with logo, header, footer and photo gallery support
Version: 1.0
Author: Custom Theme
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.site-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.site-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-navigation a:hover {
    color: #1F2E3B;
}

/* Active/current menu items */
.site-navigation .current-menu-item > a,
.site-navigation .current_page_item > a,
.site-navigation .current-menu-ancestor > a {
    color: #1F2E3B;
    font-weight: 600;
}

/* Dropdown / Submenu Styles - Desktop Only */
@media (min-width: 769px) {
    .site-navigation li {
        position: relative;
    }

    /* Hide submenus by default on desktop */
    .site-navigation .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        border-radius: 8px;
        padding: 10px 0;
        min-width: 220px;
        z-index: 1000;
        margin-top: 0;
        list-style: none;
    }

    /* Show submenu on hover - keep visible when hovering over submenu */
    .site-navigation .menu-item-has-children:hover > .sub-menu {
        display: block;
    }
    
    /* Add padding to prevent gap issues */
    .site-navigation .menu-item-has-children > .sub-menu::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        right: 0;
        height: 10px;
    }
    
    /* Keep parent highlighted when hovering over submenu */
    .site-navigation li:hover > a,
    .site-navigation li:focus-within > a {
        color: #1F2E3B;
    }

    /* Submenu items */
    .site-navigation .sub-menu li {
        display: block;
        width: 100%;
        margin: 0;
    }

    /* Submenu links */
    .site-navigation .sub-menu a {
        display: block;
        padding: 12px 20px;
        color: #333;
        font-size: 0.95rem;
        transition: background-color 0.2s ease;
    }

    .site-navigation .sub-menu a:hover {
        background-color: #f5f5f5;
        color: #1F2E3B;
    }

    /* Submenu indicator (arrow) for parent items */
    .site-navigation .menu-item-has-children > a::after {
        content: '▼';
        font-size: 0.7em;
        margin-left: 6px;
        display: inline-block;
    }

    /* Second level submenu (nested dropdown) */
    .site-navigation .sub-menu .sub-menu {
        top: 0;
        left: 100%;
        margin-top: 0;
        margin-left: 5px;
    }

    .site-navigation .sub-menu .menu-item-has-children > a::after {
        content: '▶';
        float: right;
        margin-left: 10px;
    }

    /* Active submenu items */
    .site-navigation .sub-menu .current-menu-item > a,
    .site-navigation .sub-menu .current_page_item > a {
        background-color: #f0f0f0;
        color: #1F2E3B;
        font-weight: 600;
    }
}

/* Main content */
.site-main {
    min-height: 60vh;
    padding: 2rem 0;
}

/* Pages with featured image: pull thumbnail up to remove gap */
.page .site-main .page-thumbnail {
    margin-top: -2rem;
}

/* Photo gallery styles */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-caption {
    transform: translateY(0);
}

/* Footer styles */
.site-footer {
    color: white;
    padding: 0;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .site-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Modern Single Post Styles */

/* Hero Section */
.single-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.single-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 40px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.single-hero-category {
    display: inline-block;
    background: #E74C3C;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-hero-category:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5);
}

.single-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.single-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
    opacity: 0.95;
}

.hero-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Content Wrapper */
.single-content-wrapper {
    background: #f8f9fa;
    padding: 60px 0;
}

.single-content-container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-article {
    background: #fff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* Header for posts without featured image */
.single-header-no-image {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #E74C3C;
}

.single-category-badge {
    display: inline-block;
    background: #E74C3C;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-category-badge:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5);
}

.single-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.single-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
    color: #666;
}

.meta-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Entry Content */
.single-entry-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 50px;
}

.single-entry-content p {
    margin-bottom: 1.75rem;
}

.single-entry-content h2 {
    color: #1a1a1a;
    font-size: 2.25rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.single-entry-content h3 {
    color: #1a1a1a;
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.single-entry-content h4 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.875rem;
    font-weight: 600;
}

.single-entry-content a {
    color: #E74C3C;
    text-decoration: none;
    border-bottom: 2px solid rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.single-entry-content a:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

.single-entry-content ul,
.single-entry-content ol {
    margin-left: 2rem;
    margin-bottom: 1.75rem;
}

.single-entry-content li {
    margin-bottom: 0.75rem;
}

.single-entry-content blockquote {
    border-left: 5px solid #E74C3C;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #555;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 1.2rem;
}

.single-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Tags Section */
.single-footer {
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.tags-icon {
    display: flex;
    align-items: center;
    color: #666;
}

.tag-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.tag-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Post Navigation */
.single-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.single-navigation a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.single-navigation a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nav-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E74C3C;
}

.nav-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.nav-next {
    justify-content: flex-end;
}

.nav-next .nav-content {
    align-items: flex-end;
    text-align: right;
}

/* Page Thumbnail - Full Width (for page.php template) */
.page-thumbnail {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    max-height: 400px;
}

.page-thumbnail img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive Design for Single Posts */
@media (max-width: 1024px) {
    .single-hero-title {
        font-size: 2.75rem;
    }
    
    .single-title {
        font-size: 2.5rem;
    }
    
    .single-article {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .single-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .single-hero-content {
        padding: 30px 20px;
    }
    
    .single-hero-title {
        font-size: 2rem;
    }
    
    .single-title {
        font-size: 2rem;
    }
    
    .single-content-wrapper {
        padding: 40px 0;
    }
    
    .single-article {
        padding: 40px 30px;
    }
    
    .single-entry-content {
        font-size: 1.05rem;
    }
    
    .single-entry-content h2 {
        font-size: 1.75rem;
    }
    
    .single-entry-content h3 {
        font-size: 1.5rem;
    }
    
    .single-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nav-next {
        justify-content: flex-start;
    }
    
    .nav-next .nav-content {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .single-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .single-hero-title {
        font-size: 1.75rem;
    }
    
    .single-title {
        font-size: 1.75rem;
    }
    
    .single-article {
        padding: 30px 20px;
    }
    
    .single-entry-content {
        font-size: 1rem;
    }
    
    .single-entry-content h2 {
        font-size: 1.5rem;
    }
}

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

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

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

/* Category Archive Template Styles */
.category-header {
    text-align: center;
    margin-bottom: 0;
    padding: 20px 10px;
}

.category-title {
    font-size: 3rem;
    color: #E74C3C;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Posts Grid */
.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.category-post-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.category-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-post-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.category-post-item:hover .category-post-image img {
    transform: scale(1.1);
}

/* Overlay Effect */
.category-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    transition: background 0.3s ease;
}

.category-post-item:hover .category-post-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-post-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.category-post-item:hover .category-post-title {
    transform: translateY(-5px);
}

.category-post-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
}

.category-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-post-meta svg {
    stroke: #fff;
}

/* Fallback for posts without featured image */
.category-post-no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Pagination Styles */
.category-pagination {
    margin: 50px 0;
    text-align: center;
}

.category-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.category-pagination .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #E74C3C;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-pagination .page-numbers:hover,
.category-pagination .page-numbers.current {
    background: #E74C3C;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.category-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    pointer-events: none;
}

/* No posts message */
.no-posts {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.no-posts p {
    font-size: 1.2rem;
    color: #666;
}

/* Responsive Design for Category Template */
@media (max-width: 1024px) {
    .category-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .category-post-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
    }
    
    .category-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-post-image {
        height: 300px;
    }
    
    .category-post-title {
        font-size: 1.3rem;
    }
    
    .category-post-overlay {
        padding: 20px;
    }
    
    .category-header {
        padding: 20px 10px;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-post-image {
        height: 250px;
    }
    
    .category-post-title {
        font-size: 1.1rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
}

/* Footer Banners Section */
.footer-banners {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.banner-category-section {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-category-section:last-child {
    margin-bottom: 0;
}

.banner-category-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #F7931E;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* All banner sections - same width */
.banner-category-section.banner-category-partneri .banner-item,
.banner-category-section.banner-category-donatori .banner-item,
.banner-category-section.banner-category-medijskapodrska .banner-item {
    max-width: 120px !important;
    width: auto;
}

.banner-item {
    width: 100%;
    max-width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.banner-item:hover {
    transform: translateY(-5px);
}

.banner-item a {
    display: block;
    text-decoration: none;
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.banner-item a:hover img {
    box-shadow: 0 4px 16px rgba(247, 147, 30, 0.4);
}

/* Responsive adjustments for banners */
@media (max-width: 1200px) {
    .banners-grid {
        gap: 15px;
    }
    .banner-category-section.banner-category-osnivaci .banner-item{
        max-width: 130px !important;
        width: auto;
    }
    .banner-category-section.banner-category-partneri .banner-item,
    .banner-category-section.banner-category-donatori .banner-item,
    .banner-category-section.banner-category-medijskapodrska .banner-item {
        max-width: 110px !important;
        width: auto;
    }
}

@media (max-width: 768px) {
    .footer-banners {
        padding: 30px 0;
    }
    
    .banner-category-section {
        margin-bottom: 40px;
    }
    
    .banner-category-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .banners-grid {
        gap: 12px;
    }
    .banner-category-section.banner-category-osnivaci .banner-item{
        max-width: 120px !important;
        width: auto;
    }
    .banner-category-section.banner-category-partneri .banner-item,
    .banner-category-section.banner-category-donatori .banner-item,
    .banner-category-section.banner-category-medijskapodrska .banner-item {
        max-width: 100px !important;
        width: auto;
    }
}

@media (max-width: 480px) {
    .footer-banners {
        padding: 20px 0;
    }
    
    .banner-category-section {
        margin-bottom: 30px;
    }
    
    .banner-category-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .banners-grid {
        gap: 10px;
    }
    .banner-category-section.banner-category-osnivaci .banner-item{
        max-width: 100px !important;
        width: auto;
    }
    .banner-category-section.banner-category-partneri .banner-item,
    .banner-category-section.banner-category-donatori .banner-item,
    .banner-category-section.banner-category-medijskapodrska .banner-item {
        max-width: 90px !important;
        width: auto;
    }
}

/* Category Preview Read More Button */
.category-preview-readmore {
    text-align: center;
    padding: 40px 20px;
    margin-top: 30px;
}

.read-more-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #E74C3C;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.read-more-button:hover {
    background-color: #C0392B;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.read-more-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Category Preview Grid - limit to 3 posts */
.program-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.program-preview-grid .program-masonry-item {
    max-width: 100%;
}

@media (max-width: 768px) {
    .category-preview-readmore {
        padding: 30px 15px;
    }
    
    .read-more-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .program-preview-grid {
        grid-template-columns: 1fr;
    }
}


