.elementor-8517 .elementor-element.elementor-element-0a62c48{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* ОБЩИЕ СТИЛИ СТРАНИЦЫ ПАСПОРТОВ */
.passports-page {
    padding: 20px 0;
}

/* ЗАГОЛОВОК СТРАНИЦЫ */
.passports-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.passports-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
    margin: 20px auto 0;
    border-radius: 2px;
}

.passports-title {
    font-size: 40px;
    font-weight: 900;
    color: #0c4a6e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.passports-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
}

/* КАТЕГОРИЯ АНТЕНН */
.passport-category {
    margin-bottom: 60px;
}

/* ЗАГОЛОВОК КАТЕГОРИИ */
.category-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    padding: 20px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.25);
}

.category-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.category-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.category-count {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
}

/* СЕТКА ПАСПОРТОВ */
.passports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* КАРТОЧКА ПАСПОРТА */
.passport-card {
    background: #ffffff;
    border: 2px solid #e0f2fe;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.passport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.passport-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.15);
    transform: translateY(-5px);
}

.passport-card:hover::before {
    transform: scaleX(1);
}

/* ИКОНКА ДОКУМЕНТА */
.passport-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px solid #bae6fd;
    transition: all 0.3s ease;
}

.passport-card:hover .passport-icon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-color: #0ea5e9;
    transform: scale(1.05);
}

.passport-card:hover .passport-icon::before {
    filter: brightness(0) invert(1);
}

.passport-icon::before {
    content: '📄';
    font-size: 40px;
    transition: all 0.3s ease;
}

/* НАЗВАНИЕ МОДЕЛИ */
.passport-name {
    font-size: 20px;
    font-weight: 800;
    color: #0c4a6e;
    margin-bottom: 8px;
}

/* ОПИСАНИЕ */
.passport-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* МЕТАИНФО (размер файла, формат) */
.passport-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #94a3b8;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item::before {
    font-size: 16px;
}

.meta-size::before {
    content: '📊';
}

.meta-format::before {
    content: '📋';
}

/* КНОПКА СКАЧИВАНИЯ */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.download-btn::before {
    content: '⬇';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.download-btn:hover::before {
    transform: translateY(3px);
}

.download-btn:active {
    transform: translateY(0);
}

/* БЕЙДЖ "НОВЫЙ" */
.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* БЕЙДЖ "ОБНОВЛЕНО" */
.badge-updated {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f59e0b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* СЕКЦИЯ "ВСЕ ПАСПОРТА ОДНИМ АРХИВОМ" */
.download-all-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.download-all-section::before {
    content: '📦';
    position: absolute;
    font-size: 150px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.download-all-title {
    font-size: 28px;
    font-weight: 900;
    color: #0c4a6e;
    margin-bottom: 15px;
}

.download-all-text {
    font-size: 16px;
    color: #475569;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.download-all-btn::before {
    content: '📥';
    font-size: 24px;
}

.download-all-btn:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
    transform: translateY(-3px);
}

/* ПОИСК ПО ПАСПОРТАМ */
.passport-search {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e0f2fe;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #94a3b8;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .passports-title {
        font-size: 30px;
    }
    
    .passports-subtitle {
        font-size: 16px;
    }
    
    .category-header {
        padding: 18px 20px;
    }
    
    .category-title {
        font-size: 22px;
        flex-wrap: wrap;
    }
    
    .category-count {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .passports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .download-all-section {
        padding: 30px 20px;
    }
    
    .download-all-title {
        font-size: 24px;
    }
}/* End custom CSS */