/* National Champion Section */
.national-champion {
    background: #f8f9fa;
    padding: 60px 0;
}

.nc__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.nc__text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.nc__highlight {
    background: #16AD25;
    border-radius: 5px;
    padding: 30px;
    color: white;
}

.nc__highlight-inner {
    text-align: center;
}

.nc__highlight-icon {
    margin-bottom: 20px;
}

.nc__highlight-icon .icon {
    width: 64px;
    height: 64px;
    fill: #ffd700;
}

.nc__highlight-title {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    font-size: 20px;
}

.nc__highlight-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.nc__gallery {
    margin-top: 50px;
}

.nc__photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nc__photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: #fff;
    height: 300px;
}

.nc__photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.nc__photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.3s ease;
}

.nc__photo-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .nc__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nc__highlight {
        order: -1; /* На планшете плашка сверху */
    }
    
    .nc__photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nc__photo-item {
        height: 250px;
    }
}

@media (max-width: 640px) {
    .nc__text p {
        font-size: 16px;
    }
    
    .nc__highlight {
        padding: 25px;
        order: 0; /* На мобильном плашка идёт после текста (естественный порядок) */
    }
    
    .nc__photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .nc__photo-item {
        height: 200px;
        border-radius: 6px;
    }
}