.our-current-moment-section {
    margin-bottom: 3rem;
}

.our-current-moment-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Container and scroll setup */
.current-moment-container {
    position: relative;
    width: 100%;
}

.current-moment-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 60px;
}

.current-moment-scroll::-webkit-scrollbar {
    display: none;
}

/* Scroll arrows */
.current-moment-container .scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.current-moment-container .scroll-left {
    left: 10px;
}

.current-moment-container .scroll-right {
    right: 10px;
}

.current-moment-container .scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Event cards */
.event-card {
    flex: 0 0 auto;
    width: 500px;
    height: 375px; /* 4:3 ratio */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.event-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: inherit;
}

/* Card content layout */
.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    padding: 24px;
    gap: 20px;
}

.thumbnail-column {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-column {
    flex: 1;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.content-column.full-width {
    flex: 1;
}

.card-thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Glassmorphism content box */
.content-box {
    background: rgba(40, 40, 40, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.content-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.content-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.action-button {
    background: var(--accent-color, #feaf50);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
    display: inline-block;
    pointer-events: none; /* Evita interferência com o clique do card */
}

.event-card:hover .action-button {
    background: #ff9f30;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 175, 80, 0.4);
}

/* Responsive design */
@media (max-width: 768px) {
    .our-current-moment-section h2 {
        font-size: 1.5rem;
    }
    
    .current-moment-scroll {
        padding: 0 20px;
    }
    
    .current-moment-container .scroll-arrow {
        display: none;
    }
    
    .event-card {
        width: 350px;
        height: 262px;
    }
    
    .card-content {
        padding: 16px;
        gap: 12px;
    }
    
    .content-box {
        padding: 16px;
        gap: 12px;
    }
    
    .content-box h3 {
        font-size: 1.1rem;
    }
    
    .content-box p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .event-card {
        width: 300px;
        height: 225px;
        flex-direction: column;
    }
    
    .card-content {
        flex-direction: column;
        padding: 12px;
        gap: 8px;
    }
    
    .thumbnail-column {
        flex: 0 0 auto;
        height: 60px;
    }
    
    .content-column {
        flex: 1;
    }
    
    .card-thumbnail {
        height: 50px;
        width: auto;
    }
    
    .content-box {
        padding: 12px;
        gap: 8px;
    }
    
    .content-box h3 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .content-box p {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .action-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}