/* SKT per-page CSS: galleries */

/* from galleries.html */
body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f8f9fa; /* Светлый фон для всей страницы */
            padding-top: 85px; /* Отступ для фиксированного навбара */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- НАВИГАЦИЯ --- */
        .navbar-custom {
            background-color: #ffffff;
            transition: all 0.3s ease-in-out;
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .logo-icon {
            width: 46px; height: 46px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 1rem; color: white;
            background: linear-gradient(135deg, #4b6fb8 0%, #c14545 100%);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .logo-title { font-size: 1.1rem; font-weight: 800; line-height: 1.1; color: #0b4c9e; }
        .logo-subtitle { font-size: 0.7rem; font-weight: 500; color: #6c757d; }

        .nav-link { font-size: 0.95rem; font-weight: 600; color: #343a40 !important; transition: color 0.2s ease; }
        .nav-link:hover { color: #0b4c9e !important; }

        /* --- ГЛАВНЫЙ БАННЕР (ХЕДЕР) --- */
        .gallery-hero {
            background: linear-gradient(90deg, #0b4c9e 0%, #d6322b 100%);
            color: #ffffff;
            padding: 4rem 0;
            text-align: center;
        }

        .gallery-hero-title {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 1rem;
        }

        .gallery-hero-subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.9;
        }

        /* --- СЕТКА ГАЛЕРЕИ --- */
        .gallery-section {
            padding: 4rem 0;
            background-color: #f8f9fa;
        }

        .album-card {
            background: #ffffff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .album-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
        }

        .album-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .album-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .album-badges {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .badge-year {
            background-color: #0b4c9e;
            color: #ffffff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.35rem 0.7rem;
            border-radius: 20px;
        }

.badge-source {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.badge-source-main {
    background-color: #e8f1ff;
    color: #0b4c9e;
    border: 1px solid #b9d5ff;
}

.badge-source-qual {
    background-color: #ffeaea;
    color: #b42318;
    border: 1px solid #ffc5c1;
}

        .badge-type {
            background-color: #ffffff;
            color: #6c757d;
            border: 1px solid #dee2e6;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.35rem 0.7rem;
            border-radius: 20px;
        }

        .album-title {
            font-size: 1.1rem;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .album-meta {
            margin-top: auto;
            color: #8b95a5;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .album-meta i {
            margin-right: 0.4rem;
            font-size: 1rem;
        }

        /* --- БЛОК CTA (ПРИЗЫВ К ДЕЙСТВИЮ) --- */
        .cta-section {
            padding-bottom: 5rem;
            background-color: #f8f9fa;
        }

        .cta-banner {
            background: linear-gradient(90deg, #3264b5 0%, #d6322b 100%);
            border-radius: 16px;
            padding: 4rem 2rem;
            text-align: center;
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .btn-cta {
            background-color: #ffffff;
            color: #0b4c9e;
            font-weight: 700;
            padding: 0.8rem 2.5rem;
            border-radius: 8px;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta:hover {
            background-color: #f0f4f8;
            color: #0b4c9e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .gallery-hero-title { font-size: 2.2rem; }
            .cta-title { font-size: 1.5rem; }
            .cta-banner { padding: 3rem 1.5rem; }
        }
