/* ====================================
   WALL CAROUSEL ANIMATION
   ==================================== */

.wall-carousel-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 2rem 0;
    background: transparent !important;
}

.wall-carousel-row {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 2rem;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.wall-carousel-track {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 1rem;
    height: 100%;
}

/* Automatic scrolling animations */
.wall-carousel-track.scroll-left {
    animation: scrollLeft 120s linear infinite;
}

.wall-carousel-track.scroll-right {
    animation: scrollRight 120s linear infinite;
}

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

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

.wall-carousel-card {
    min-width: 300px;
    max-width: 300px;
    height: 180px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wall-carousel-card .wall-message-text {
    font-family: "Lora", serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e5e5e5;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.wall-carousel-card .wall-message-author {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wall-carousel-card .country-flag {
    font-size: 1.25rem;
    display: inline-block;
}

/* Old wall-message class for backward compatibility */
.wall-message {
    background: #000;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.wall-message .wall-message-text {
    font-family: "Lora", serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #e5e5e5;
    margin-bottom: 0.75rem;
}

.wall-message .wall-message-author {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wall-message .country-flag {
    font-size: 1.25rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .wall-carousel-row {
        height: 160px;
    }

    .wall-carousel-card {
        min-width: 250px;
        max-width: 250px;
        height: 150px;
        padding: 1rem;
    }

    .wall-carousel-card .wall-message-text {
        font-size: 0.875rem;
        -webkit-line-clamp: 3;
    }
}
