/* ==================== THAT'S CULT SECTION ==================== */
.thats-cult-section {
    padding: 0 0 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Scrolling Banner - Yellow Style */
.cult-scrolling-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 60px;
    width: 100%;
}

.cult-scrolling-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.cult-banner-content {
    display: flex;
    animation: scroll-cult 15s linear infinite;
    width: max-content;
    will-change: transform;
}

.cult-banner-content span {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0 40px;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    display: inline-block;
}

@keyframes scroll-cult {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.thats-cult-section .container {
    position: relative;
    z-index: 1;
}

.thats-cult-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cult-icon {
    color: #FFD700;
    font-size: 2rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.thats-cult-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.thats-cult-section .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cult-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cult-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none;
}

.cult-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.cult-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cult-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.cult-card:hover .cult-image img {
    transform: scale(1.08);
}

.cult-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cult-card:hover .cult-overlay {
    opacity: 1;
}

.cult-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 20px;
    border-radius: 0;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.cult-content {
    padding: 25px;
}

.cult-category {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 5px 12px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.cult-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.cult-card:hover h3 {
    color: #FFA500;
}

.cult-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cult-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.cult-author {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.cult-date {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 500;
}

/* No Cult Posts Message */
.no-cult-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
}

.no-cult-posts p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* View More Button */
.thats-cult-section .view-more-container {
    text-align: center;
    margin-top: 50px;
}

.cult-view-more {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700;
    color: #000;
    font-weight: 900;
    text-decoration: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: none;
    border: 2px solid #000;
}

.cult-view-more:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

/* Desktop - Ensure banner works properly on large screens */
@media (min-width: 769px) {
    .cult-banner-content {
        animation: scroll-cult 25s linear infinite;
    }
    
    .cult-banner-content span {
        padding: 0 50px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .thats-cult-section {
        padding: 0 0 60px 0;
    }
    
    .cult-scrolling-banner {
        padding: 12px 0;
        margin-bottom: 40px;
    }
    
    .cult-banner-content span {
        font-size: 1rem;
        padding: 0 30px;
    }
    
    .thats-cult-section h2 {
        font-size: 1.8rem;
        gap: 10px;
    }
    
    .cult-icon {
        font-size: 1.5rem;
    }
    
    .thats-cult-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cult-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cult-image {
        height: 200px;
    }
    
    .cult-content h3 {
        font-size: 1.1rem;
    }
    
    .cult-view-more {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cult-scrolling-banner {
        padding: 10px 0;
        margin-bottom: 30px;
    }
    
    .cult-banner-content span {
        font-size: 0.9rem;
        padding: 0 20px;
        letter-spacing: 2px;
    }
    
    .thats-cult-section h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
        gap: 8px;
    }
    
    .cult-icon {
        font-size: 1.2rem;
    }
    
    .cult-content {
        padding: 20px;
    }
    
    .cult-view-more {
        padding: 10px 25px;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
}
