.gc-wrap {
    position: relative;
    width: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 32px rgba(0,0,0,.22);
    background: #111;
    display: block;
}
.gc-wrap .gc-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 1;
}
.gc-wrap .gc-slide.gc-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.gc-wrap .gc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.55);
    background: rgba(0,0,0,.45);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    backdrop-filter: blur(6px);
    padding: 0;
}
.gc-wrap .gc-btn:hover {
    background: rgba(0,0,0,.8);
    border-color: #fff;
}
.gc-wrap .gc-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    display: block;
}
.gc-wrap .gc-prev { left: 14px; }
.gc-wrap .gc-next { right: 14px; }
.gc-wrap .gc-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.gc-wrap .gc-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background .3s, width .3s;
}
.gc-wrap .gc-dot.gc-active {
    background: #fff;
    width: 24px;
    border-radius: 9px;
}
