/* === HERO SECTION === */
.w22-shots-hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 420px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb ul {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #000;
}

.hero-title {
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 300;
    letter-spacing: -1px;
    margin: 0;
    color: #1a1a1a;
    line-height: 0.9;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 1024px) {
    .hero-image {
        object-position: right;
    }
    .w22-shots-hero {
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 10px 15px;
        box-sizing: border-box;
        gap: 10px;
        justify-content: center;
    }
    .header-left {
        flex: 0 0 auto;
    }
    .w22-shots-hero {
        height: 300px;
    }
    .hero-image-wrapper {
        height: 300px !important;
    }
    .hero-image {
        height: 300px !important;
    }
    .hero-content {
        padding-bottom: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero-title {
        font-size: 32px;
    }
    .breadcrumb ul {
        font-size: 12px;
        gap: 8px;
        margin-bottom: 12px;
    }
}
