.fns-wrapper-855a62a6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

/* Header Section */
.fns-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.fns-header-left {
    flex: 1;
    min-width: 280px;
}

.fns-sub-title {
    font-size: 14px;
    font-weight: 700;
    color: #8bc34a;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.fns-main-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #1a2c1d;
    line-height: 1.1;
}

.fns-sub-bar {
    width: 60px;
    height: 5px;
    background-color: #8bc34a;
    border-radius: 2px;
}

.fns-header-right {
    flex: 1;
    min-width: 320px;
}

.fns-header-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Slider Pane Layout */
.fns-slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.fns-slides {
    position: relative;
    display: block;
    min-height: 500px;
}

.fns-slide {
    display: none;
    width: 100%;
}

.fns-slide.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.fns-slide-inner {
    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Left Image Section */
.fns-media-pane {
    flex: 1.2;
    position: relative;
    min-height: 480px;
}

.fns-image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.fns-carousel-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.fns-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.fns-carousel-img.active {
    opacity: 1;
    position: relative;
}

/* Thumbnails Overlay */
.fns-thumbnails {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.fns-thumb {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.fns-thumb.active {
    border-color: #fff;
    opacity: 1;
    transform: scale(1.05);
}

.fns-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge overlay */
.fns-counter-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    z-index: 10;
}

/* Right Text Section */
.fns-info-pane {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fns-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.fns-category {
    background-color: #ecf5e6;
    color: #76a035;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fns-date {
    font-size: 14px;
    color: #999;
}

.fns-slide-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1a2c1d;
    line-height: 1.2;
}

.fns-slide-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Bottom Controls Section */
.fns-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 10px;
}

.fns-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fns-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fns-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: #8bc34a;
}

.fns-arrows {
    display: flex;
    gap: 12px;
}

.fns-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fns-arrow:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.fns-arrow svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .fns-slide-inner {
        flex-direction: column;
    }
    .fns-media-pane {
        min-height: 350px;
    }
    .fns-info-pane {
        padding: 40px;
    }
}
