body {
    margin: 0;
    background: #FFFFFF;
    font-family: 'Roboto', Arial, sans-serif;
}

.gal-main {
    background: #FFFFFF;
}

.gal-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gal-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
    z-index: 0;
}

.gal-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gal-hero-top {
    padding-top: 24px;
}

.gal-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.gal-breadcrumbs a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.gal-breadcrumbs a:hover {
    color: #FFFFFF;
}

.gal-breadcrumbs-sep {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
}

.gal-breadcrumbs-current {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}

.gal-hero-title {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 50px;
    color: #FFFFFF;
    margin: 0 0 20px;
}

.gal-hero-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.gal-tabs {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.gal-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 156px;
    min-height: 120px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 16px 12px;
    box-sizing: border-box;
    transition: background 0.2s;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.gal-tab-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.gal-tab.active {
    background: #FFFFFF;
}

.gal-tab-icon--color {
    filter: brightness(0) invert(1);
}

.gal-tab.active .gal-tab-icon--color {
    filter: unset;
}

.gal-tab-label {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: color 0.2s;
}

.gal-tab.active .gal-tab-label {
    color: #292829;
}

.gal-tabs-mobile {
    display: none;
}

.gal-content {
    background: #FFFFFF;
    padding: 0 0 60px;
}

.gal-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 30px 20px;
}

.gal-panel {
    display: none;
}

.gal-panel.active {
    display: block;
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.gal-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.gal-item.video-item {
    height: auto;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.gal-item picture {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gal-item > .gal-item-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gal-item.video-item .gal-item-img {
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gal-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(72, 146, 78, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.gal-video-play svg {
    margin-left: 4px;
}

.gal-item.video-item:hover .gal-video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gal-item.video-item:hover .gal-item-img {
    filter: brightness(0.85);
}

.gal-item--hidden {
    display: none;
}

.gal-item-img {
    width: 100%;
    aspect-ratio: 388 / 272;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.gal-item-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0;
    height: 44px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    overflow: hidden;
    transition: padding 0.35s ease;
    padding: 0 10px;
    box-sizing: border-box;
}

.gal-item-btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}

.gal-item-btn-text {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    transition: max-width 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
    margin-right: 0;
}

.gal-item:hover .gal-item-btn {
    padding: 0 10px 0 14px;
}

.gal-item:hover .gal-item-btn-text {
    max-width: 300px;
    opacity: 1;
    margin-right: 8px;
}

.gal-more-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gal-more-btn {
    width: 386px;
    height: 69px;
    border-radius: 6px;
    border: none;
    background: #FF9C00;
    box-shadow: 0px 6px 8px 0px rgba(255, 255, 255, 0.45) inset,
    0px -4px 11px 0px rgba(0, 0, 0, 0.2) inset;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
    padding: 15px 40px;
    box-sizing: border-box;
}

.gal-more-btn:hover {
    background: #e88e00;
}

.gal-more-btn.hidden {
    display: none;
}

@media (max-width: 900px) {
    .gal-hero-title {
        font-size: 38px;
        line-height: 42px;
    }

    .gal-tab {
        width: 120px;
        min-height: 100px;
        padding: 12px 8px;
    }

    .gal-tab-icon {
        width: 44px;
        height: 44px;
    }

    .gal-tab-label {
        font-size: 16px;
        line-height: 22px;
    }

    .gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gal-video-play {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 600px) {
    .gal-hero {
        min-height: auto;
    }

    .gal-hero-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 16px;
    }

    .gal-hero-divider {
        margin-bottom: 16px;
    }

    .gal-tabs {
        display: none;
    }

    .gal-tabs-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 20px;
    }

    .gal-tab-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 98px;
        height: 63px;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        background: transparent;
        cursor: pointer;
        padding: 10px;
        box-sizing: border-box;
        transition: background 0.2s, border-color 0.2s;
    }

    .gal-tab-mobile.active {
        background: #FFFFFF;
        border-color: #000000;
    }

    .gal-tab-mobile-icon {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .gal-tab-mobile-icon--color {
        display: none;
    }

    .gal-tab-mobile-icon--white {
        display: block;
    }

    .gal-tab-mobile.active .gal-tab-mobile-icon--color {
        display: block;
    }

    .gal-tab-mobile.active .gal-tab-mobile-icon--white {
        display: none;
    }

    .gal-tab-mobile-label {
        font-family: 'Ubuntu', sans-serif;
        font-weight: 500;
        font-size: 12px;
        line-height: 14px;
        color: rgba(255, 255, 255, 0.85);
        text-align: center;
    }

    .gal-tab-mobile.active .gal-tab-mobile-label {
        color: #292829;
    }

    .gal-content {
        padding: 24px 0 40px;
    }

    .gal-container {
        padding: 0 16px;
    }

    .gal-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gal-more-btn {
        width: 100%;
        height: 56px;
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .gal-hero-title {
        font-size: 24px;
        line-height: 30px;
    }

    .gal-breadcrumbs a,
    .gal-breadcrumbs-sep,
    .gal-breadcrumbs-current {
        font-size: 12px;
    }
}
