﻿/* Video embed styling - Gray & White Theme */

.rekord-card {
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
    cursor: default;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
}

.rekord-card:hover {
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.15);
}

.video-toggle-btn {
    transition: all 0.2s ease;
    white-space: nowrap;
    color: #34495e;
    border-color: #34495e;
}

.video-toggle-btn:hover {
    transform: scale(1.05);
    background-color: #34495e;
    border-color: #34495e;
    color: #ffffff;
}

.video-toggle-btn svg {
    transition: transform 0.2s ease;
}

.video-toggle-btn:hover svg {
    transform: scale(1.1);
}

.video-container {
    position: relative;
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-container iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
}

.rekord-list .card {
    border-radius: 10px;
    background-color: #ffffff;
}

/* Instagram specific styling */
.ratio-9x16 {
    aspect-ratio: 9 / 16;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        margin-top: 0.75rem;
    }

    .ratio-9x16 {
        max-width: 100% !important;
    }

    .video-toggle-btn .btn-text {
        display: none;
    }

    .video-toggle-btn {
        padding: 0.2rem 0.4rem;
        font-size: 0.85rem;
        line-height: 1;
    }

    .video-toggle-btn svg {
        width: 14px;
        height: 14px;
    }
}