h1.progress__title {
	font-size: 80px;
	font-weight: 400;
	color: #1a1a1a;
	line-height: 100%;
	text-transform: none;
	font-family: SourceSerif-;
	width: 100%;
	text-align: left;
	margin: 32px 0;
}
.progress-text p {
    color: #000;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 130%;
}
@media (max-width: 768px) {
    h1.progress__title {
        font-size: 28px;
		margin-top: 0px;
    }
	.progress-text p  {
		font-size: 12px;
	}
}

.construction-timeline {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.timeline-header h2 {
    margin: 0 0 30px 0;
    font-size: 32px;
    font-weight: 600;
}

/* Вкладки */
.tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #eee;
    margin: 30px 0;
	font-family: SourceSerif-;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 36px;
    font-weight: 400;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
    color: #000;
    -webkit-appearance: none;
    appearance: none;
	font-family: SourceSerif-;
}

.tab-btn.active {
    opacity: 1;
    border-bottom: 2px solid #000;
    color: #000;
}

button {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    color: inherit;
}

.tab-btn {
    -webkit-tap-highlight-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Сетка карточек */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Планшеты */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Телефоны */
@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Карточка */
.card {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    border: 1px solid #eef2f5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f8fafc;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

/* Бейджи */
.year-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: #1e2a36;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    font-family: SourceSerif-;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.card-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(2px);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    font-family: SourceSerif-;
    font-weight: 300;
    z-index: 2;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #1e2a36;
}

.card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

/* Видео модальное окно */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal-inner {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 100;
}

.video-modal-inner video {
    width: 100%;
    max-height: 70vh;
}

.video-modal-title {
    text-align: center;
    color: white;
    padding: 15px;
    font-size: 16px;
}

.empty {
    text-align: center;
    padding: 60px;
    color: #8a99a8;
    background: #fafcff;
}

/* Адаптив */
@media (max-width: 768px) {
	.tab-btn {
		font-size: 20px;
	}
    .construction-timeline {
        padding: 20px;
    }
    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    .year-badge, .card-badge {
        font-size: 14px;
        padding: 5px 10px;
    }
    .play-icon {
        width: 44px;
        height: 44px;
    }
    .play-icon::after {
        border-width: 8px 0 8px 13px;
    }
    .video-modal-inner {
        width: 95%;
    }
    .video-modal-close {
        top: -35px;
        font-size: 28px;
    }
}