/* Базовые стили */
:root {
    --primary-blue: #1a3a6c;
    --primary-blue-light: #2c5282;
    --navy-dark: #0a1f3a;
    --steel-gray: #4a5568;
    --steel-light: #718096;
    --sky-light: #e6f2ff;
    --water-blue: #d1e8ff;
    --hull-red: #c53030;
    --hull-red-light: #fed7d7;
    --deck-white: #f7fafc;
    --border-gray: #e2e8f0;
    --success-green: #38a169;
    --warning-amber: #d69e2e;
}

/* * */
#content  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
}
html,body {
	height: initial;
}
body {
    background-color: var(--deck-white);
    color: var(--steel-gray);
    line-height: 1.65;
    background-image: linear-gradient(to bottom, var(--sky-light) 0%, transparent 150px);
    min-height: 100vh;
	    
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Хлебные крошки */
/*.breadcrumbs {
    padding: 20px 0 15px;
    font-size: 0.95rem;
}

.breadcrumbs-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-link:hover {
    color: var(--hull-red);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--steel-light);
    font-size: 0.8rem;
}*/

/* Шапка проекта */
.project-header {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px; /* Уменьшено с 32px до 30px */
    box-shadow: 0 8px 30px rgba(26, 58, 108, 0.08);
    border: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
	
	font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
}

.project-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--water-blue) 0%, transparent 70%);
    border-radius: 0 16px 0 80px;
    z-index: 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.project-tag {
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.project-tag.shipbuilding {
    background: var(--water-blue);
    color: var(--navy-dark);
    border: 1px solid rgba(26, 58, 108, 0.2);
}

.project-tag.metalwork {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    color: #2d3748;
    border: 1px solid #cbd5e0;
}

.project-tag.completed {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.project-header h1 {
    color: var(--navy-dark);
    margin-bottom: 15px; /* Уменьшено с 16px */
    font-size: 2.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    max-width: 85%;
	font-family:initial;
	    font-weight: 700;
		    text-transform: none;
			
			font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
}

.project-subtitle {
    font-size: 1.3rem;
    color: var(--primary-blue-light);
    margin-bottom: 25px; /* Уменьшено с 32px */
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px; /* Уменьшено с 32px */
    margin-top: 25px; /* Уменьшено с 32px */
    padding-top: 25px; /* Уменьшено с 32px */
    border-top: 2px dashed var(--border-gray);
    position: relative;
    z-index: 1;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--steel-gray);
}

.meta-icon {
    width: 44px;
    height: 44px;
    background: var(--sky-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.9rem;
    color: var(--steel-light);
}

.meta-value {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.1rem;
}

/* Основной контент */
.content-section {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px; /* Уменьшено с 48px до 30px */
    margin: 30px 0; /* Уменьшено с 48px до 30px */
}

@media (max-width: 1024px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 30px; /* Уменьшено с 40px до 30px */
    }
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Уменьшено с 48px до 30px */
}

/* Блоки контента */
.content-block {
    background: white;
    border-radius: 16px;
    padding: 35px; /* Уменьшено с 40px */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-block:hover {
    box-shadow: 0 10px 30px rgba(26, 58, 108, 0.1);
    transform: translateY(-4px);
}

.content-block h3 {
    color: var(--navy-dark);
    margin-bottom: 20px; /* Уменьшено с 24px */
    padding-bottom: 15px; /* Уменьшено с 16px */
    border-bottom: 3px solid var(--water-blue);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
	text-transform:none;
	    font-weight: 700;
}

.content-block h3 i {
    color: var(--primary-blue);
    font-size: 1.4rem;
}

/* Технические характеристики */
.tech-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px; /* Уменьшено с 24px */
    margin-top: 20px;
}

.tech-card {
    background: var(--sky-light);
    border-radius: 12px;
    padding: 25px 20px; /* Уменьшено с 28px 24px */
    border-left: 5px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-card-title {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.1rem;
}

.tech-card-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
}

.tech-card-desc, .tech-card-desc p {
    font-size: 0.95rem;
    color: var(--steel-light);
}

/* Видео раздел */
.video-section {
    margin-top: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 соотношение сторон */
    height: 0;
    margin-bottom: 20px; /* Уменьшено с 24px */
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #2c5282 0%, #1a3a6c 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.1);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px; /* Уменьшено с 16px */
    opacity: 0.9;
}

.video-placeholder-text {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    max-width: 80%;
}

.video-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--steel-gray);
    margin-top: 15px; /* Уменьшено с 16px */
    padding: 18px; /* Уменьшено с 20px */
    background: var(--sky-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.video-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px; /* Уменьшено с 30px */
}

.video-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-gray);
    transition: all 0.3s;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-thumbnail i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-item:hover .video-play-icon {
    opacity: 1;
}

.video-info {
    padding: 18px; /* Уменьшено с 20px */
}

.video-title {
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.video-duration {
    font-size: 0.9rem;
    color: var(--steel-light);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Преимущества */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; /* Уменьшено с 24px */
    margin-top: 20px;
}

.advantage-card {
    background: white;
    border-radius: 12px;
    padding: 25px; /* Уменьшено с 28px */
    border: 1px solid var(--border-gray);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Уменьшено с 16px */
}

.advantage-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(26, 58, 108, 0.1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--water-blue) 0%, #b3d9ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.6rem;
}

.advantage-title {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.2rem;
}

/* Виды насадок */
.nozzle-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.nozzle-type {
    display: flex;
    background: #f8fafc;
    border-radius: 12px;
    padding: 22px; /* Уменьшено с 24px */
    border: 1px solid var(--border-gray);
    transition: all 0.3s;
}

.nozzle-type:hover {
    background: white;
    border-color: var(--primary-blue);
}

.nozzle-type-icon {
    width: 60px;
    height: 60px;
    background: var(--water-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.nozzle-type-content {
    flex-grow: 1;
}

.nozzle-type-title {
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

/* Проекты судов */
.ship-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ship-project {
    background: white;
    border-radius: 12px;
    padding: 22px; /* Уменьшено с 24px */
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: all 0.3s;
}

.ship-project:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 58, 108, 0.1);
}

.ship-project-icon {
    width: 70px;
    height: 70px;
    background: var(--water-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2rem;
    margin: 0 auto 15px; /* Уменьшено с 16px */
}

.ship-project-name {
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

/* Галерея */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item::before {
    content: "🔍";
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(26, 58, 108, 0.85);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--steel-light);
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.gallery-placeholder {
	background-size: contain;
    background-position: center;
	/*background-image: url(/assets/components/phpthumbof/cache/photo-2025-01-20-15-13-04-%282%29.2883a620421b657d9dd50e7f9dcdd0fb.webp);*/
	color:white;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--primary-blue-light);
	color:white;
	
	display:none;
}

/* Сайдбар */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Уменьшено с 32px до 30px */
}

.sidebar-block {
    background: white;
    border-radius: 16px;
    padding: 30px; /* Уменьшено с 32px до 30px */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
}

.sidebar-block h3 {
    color: var(--navy-dark);
    margin-bottom: 20px; /* Уменьшено с 24px */
    padding-bottom: 12px;
    border-bottom: 2px solid var(--water-blue);
    font-size: 1.4rem;
}

/* Категории проектов */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    text-decoration: none;
    color: var(--steel-gray);
    transition: all 0.2s;
}

.category-item:hover {
    background: var(--sky-light);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateX(5px);
}

.category-icon {
    width: 40px;
    height: 40px;
    background: var(--water-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.category-name {
    font-weight: 600;
    flex-grow: 1;
}

.category-count {
    background: var(--primary-blue);
    color: white;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

/* Контакты */
.contact-person {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px; /* Уменьшено с 20px */
    background: var(--sky-light);
    border-radius: 12px;
    border: 1px solid rgba(26, 58, 108, 0.1);
}

.contact-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-info {
    flex-grow: 1;
}

.contact-name {
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.contact-position {
    font-size: 0.9rem;
    color: var(--steel-light);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px; /* Уменьшено с 16px */
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--steel-gray);
    border: 1px solid var(--border-gray);
    transition: all 0.2s;
}

.contact-link:hover {
    background: var(--sky-light);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.contact-link-icon {
    width: 40px;
    height: 40px;
    background: var(--sky-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* Призыв к действию */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 16px;
    margin: 30px 0; /* Уменьшено с 60px 0 40px до 30px 0 */
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px; /* Уменьшено с 16px */
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 25px; /* Уменьшено с 30px до 25px */
    font-size: 1.05rem;
    line-height: 1.6;
}

.compact-contact-block {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto 20px; /* Уменьшено с 25px до 20px */
    max-width: 650px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-item {
    flex: 1;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-row-icon {
    font-size: 1.2rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-row-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.contact-row-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 5px;
    transition: all 0.2s;
}

.contact-row-value:hover {
    color: #d1e8ff;
    text-decoration: underline;
}

.contact-row-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-divider {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.cta-footer {
    text-align: center;
    margin-top: 20px;
}

.all-projects-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.all-projects-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .project-header {
        padding: 30px 20px; /* Уменьшено с 32px 24px */
    }
    
    .project-header h1 {
        font-size: 2rem;
        max-width: 100%;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .project-meta {
        gap: 20px;
    }
    
    .content-block {
        padding: 30px 20px; /* Уменьшено с 32px 24px */
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }
    
    .contact-value {
        font-size: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .all-projects-link {
        width: 100%;
        justify-content: center;
    }
    
    .cta-section {
        margin: 25px 0; /* Адаптивный отступ */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .tech-highlight, .advantages-grid, .ship-projects, .video-list {
        grid-template-columns: 1fr;
    }
    
    .nozzle-type {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nozzle-type-icon {
        margin-right: 0;
        margin-bottom: 15px; /* Уменьшено с 16px */
    }
    
    .contact-value {
        font-size: 1.3rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .content-section {
        margin: 25px 0; /* Адаптивный отступ */
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 20px; /* Уменьшено с 25px */
    }
    
    .compact-contact-block {
        padding: 15px;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-divider {
        width: 80%;
        height: 1px;
        margin: 5px 0;
    }
    
    .contact-item {
        padding: 15px 10px;
    }
    
    .contact-row-value {
        font-size: 1.3rem;
    }
    
    .all-projects-link {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 1.4rem;
    }
    
    .contact-row-value {
        font-size: 1.2rem;
    }
    
    .contact-row-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}


/*видео*/
/* 1. ПЕРВОЕ ВИДЕО: фиксируем высоту через 16:9 */
.video-placeholder .video-responsive-full {
    position: relative;
    width: 100%;
    height: 0 !important;
    padding-bottom: 56.25% !important; /* СОЗДАЕТ ВИДИМУЮ ВЫСОТУ */
    background: #000;
    overflow: hidden;
}

.video-placeholder .video-responsive-full iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* 2. МАЛЕНЬКОЕ ВИДЕО: убираем подложку и выравниваем */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0 !important;
    padding-bottom: 56.25% !important; /* Убирает лишнее место снизу */
    background: transparent !important; /* УБИРАЕМ ПОДЛОЖКУ */
    overflow: hidden;
}

/* Растягиваем видео внутри миниатюры */
.video-thumbnail .video-iframe-wrapper,
.video-thumbnail .video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* Оверлей миниатюры: строго поверх видео */
.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
}

/* Убираем любые тексты, которые могут толкать блок миниатюры */
.video-thumbnail .video-placeholder-text {
    display: none !important;
}

/* Твои иконки */
.video-thumbnail-overlay i.fa-industry {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.video-play-icon {
    width: 40px;
    height: 40px;
    background: #0056b3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
