﻿/**
 * Sudy Extends CSS
 */

/* Focus Slider Styles */
.focus-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.focus-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.focus-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.focus-item.active {
    display: block;
}

.focus-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focus-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
}

.focus-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.pagination-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.pagination-item.active {
    background: #fff;
}

.focus-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.focus-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.focus-nav-prev {
    left: 10px;
}

.focus-nav-next {
    right: 10px;
}