/* ============================================
   Stan360 Carousel Styles
   ============================================ */
.stan360-carousel-section {
    background-color: var(--basicblue);
    padding: 48px 0 64px;
	margin: 0 0 40px 0;
}
.stan360-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Pasek kolorów --- */
.stan360-color-bar {
    display: flex;
    margin-bottom: 24px;
}
.stan360-color-bar span {
    height: 6px;
    width: 80px;
    display: block;
}
.bar-yellow { background: var(--yellow); }
.bar-red    { background: var(--red); }
.bar-blue   { background: var(--blue); }

/* --- Nagłówek --- */
.stan360-heading {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* --- Slajd --- */
.stan360-slide {
    padding: 0 10px;
}
.stan360-category {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* --- Karta z obrazkiem --- */
.stan360-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.stan360-image-wrapper {
    position: relative;
    aspect-ratio: 18 / 10;
}
.stan360-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stan360-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(200, 75, 49, 0.35) 0%,
        rgba(43, 58, 92, 0.55) 50%,
        rgba(240, 192, 64, 0.25) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}
.stan360-overlay-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.stan360-raport-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.95);
}
.stan360-raport-icon {
    width: 28px;
    height: 28px;
}
.stan360-raport-badge span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}
.stan360-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.95);
    font-size: 12px;
    font-weight: 700;
}
.stan360-logo-circle {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.stan360-logo-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
}
.stan360-overlay-bottom {
    margin-top: auto;
}
.stan360-overlay-title {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    max-width: 85%;
    margin: 0;
}

/* --- Tytuł pod obrazkiem --- */
.stan360-title {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
    min-height: 42px;
}

/* --- Przycisk Czytaj więcej --- */
.stan360-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.stan360-readmore:hover {
    background: #b03d26;
}
.stan360-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}
.stan360-readmore:hover .stan360-arrow {
    transform: translateX(3px);
}

/* ============================================
   Owl Carousel Custom Navigation
   ============================================ */
.stan360-owl-carousel .owl-nav button.owl-prev,
.stan360-owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--yellow) !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    margin: 0;
}
.stan360-owl-carousel .owl-nav button.owl-prev:hover,
.stan360-owl-carousel .owl-nav button.owl-next:hover {
    background: #e0b030 !important;
}
.stan360-owl-carousel .owl-nav button.owl-prev {
    left: -64px;
}
.stan360-owl-carousel .owl-nav button.owl-next {
    right: -64px;
}
.stan360-owl-carousel .owl-nav button span {
    color: #2B3A5C;
    font-size: 32px;
    line-height: 1;
    display: block;
    margin-top: -4px;
}

/* --- Dots --- */
.stan360-owl-carousel .owl-dots {
    margin-top: 28px;
}
.stan360-owl-carousel .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.3);
    width: 10px;
    height: 10px;
    margin: 4px;
}
.stan360-owl-carousel .owl-dots .owl-dot.active span,
.stan360-owl-carousel .owl-dots .owl-dot:hover span {
    background: #F0C040;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1300px) {
    .stan360-owl-carousel .owl-nav button.owl-prev { left: -24px; }
    .stan360-owl-carousel .owl-nav button.owl-next { right: -24px; }
}
@media (max-width: 768px) {
    .stan360-heading { font-size: 22px; }
    .stan360-category { font-size: 16px; }
    .stan360-owl-carousel .owl-nav button.owl-prev,
    .stan360-owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }
    .stan360-owl-carousel .owl-nav button.owl-prev { left: -8px; }
    .stan360-owl-carousel .owl-nav button.owl-next { right: -8px; }
}