/**
 * بانر Swiper — مكتبي احترافي
 */
.fs-banner {
    margin: 0 0 1.25rem;
    font-family: var(--font-body);
}

.fs-banner__swiper {
    width: 100%;
    height: clamp(140px, 18vw, 200px);
    border-radius: 2px;
    overflow: hidden;
    background: #1c1917;
}

.fs-banner__slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.fs-banner__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.fs-banner__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(28, 25, 23, 0.88) 0%,
        rgba(28, 25, 23, 0.55) 42%,
        rgba(28, 25, 23, 0.15) 100%
    );
    pointer-events: none;
}

.fs-banner__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: right;
    padding: clamp(0.85rem, 2.5vw, 1.35rem) clamp(1rem, 4vw, 2rem);
    max-width: min(480px, 88%);
}

.fs-banner__region {
    margin: 0 0 0.5rem;
    font-family: var(--font-numeric);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d6d3d1;
}

.fs-banner__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.fs-banner__text {
    margin: 0 0 0.65rem;
    font-family: var(--font-body);
    font-size: clamp(0.78rem, 1.6vw, 0.88rem);
    line-height: 1.5;
    color: #e7e5e4;
    max-width: 34ch;
}

.fs-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.95rem;
    background: #b45309;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.02em;
}

.fs-banner__pagination {
    bottom: 0.5rem !important;
}

.fs-banner__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.fs-banner__pagination .swiper-pagination-bullet-active {
    background: #fbbf24;
    width: 22px;
    border-radius: 4px;
}

.fs-banner__nav {
    color: #fff !important;
    width: 44px;
    height: 44px;
    background: rgba(28, 25, 23, 0.45);
    border-radius: 2px;
}

.fs-banner__nav::after {
    font-size: 1rem !important;
    font-weight: 700;
}

@media (max-width: 640px) {
    .fs-banner__nav { display: none; }
    .fs-banner__content { max-width: 100%; }
}
