﻿.focus-container {
    width: 100%;
    margin: 20px 0;
    position: relative;
    box-sizing: border-box;
}

.focus-header-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}

.focus-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.focus-card {
    height: auto;
    box-sizing: border-box;
}

.focus-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.focus-title {
    margin-top: 6px;
    font-size: 0.95em;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.focus-prev, .focus-next {
    position: absolute;
    top: 40%;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-prev::after, .focus-next::after {
    display: none !important;
    content: "" !important;
}

.focus-prev {
    left: 8px;
}

.focus-next {
    right: 8px;
}

.focus-prev img, .focus-next img {
    width: 32px;
    height: 32px;
    display: block;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.focus-prev:hover img, .focus-next:hover img {
    opacity: 1;
}

h2.focus-header-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 12px 0;
    padding: 0;
    color: #333;
    line-height: 1.2;
}

button.focus-prev, 
button.focus-next {
    background: transparent;
    border: none;
    padding: 0;
    position: absolute;
    top: 40%;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    z-index: 10;
    cursor: pointer;
}


@media (max-width: 768px) {
    .focus-swiper-mobile-vertical {
        max-height: 480px;
    }
    
    .focus-prev, .focus-next {
        display: none !important;
    }
    
    .focus-title {
        white-space: normal;
        text-align: left;
    }
}