.forte-container {
    display: flex;
    gap: 30px;
    padding: clamp(18px, 3vw, 34px);
    border-radius: 18px;
    box-shadow: 0 14px 45px rgba(0,0,0,0.08);
    font-family: inherit;
    color: inherit;
    transition: background 0.3s ease;
    box-sizing: border-box;
}
.forte-container * { box-sizing: border-box; }
.forte-menu-column {
    width: 280px;
    flex: 0 0 280px;
    border-right: 1px solid rgba(0,0,0,0.08);
    padding-right: 24px;
}
.forte-menu-column h2 {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.25;
    color: var(--fd-title-clr) !important;
    margin: 0 0 20px;
    font-weight: 700;
}
.forte-nav-list { display: flex; flex-direction: column; gap: 8px; }
.forte-menu-item {
    padding: 13px 15px;
    text-decoration: none !important;
    color: inherit;
    background: rgba(255,255,255,0.75);
    border-radius: 10px;
    font-weight: 600;
    transition: all .22s ease;
    border: 1px solid rgba(0,0,0,0.06);
    line-height: 1.25;
}
.forte-menu-item:hover { transform: translateX(3px); background: rgba(0,0,0,0.04); }
.forte-menu-item.active {
    background: var(--fd-accent);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.forte-content-column { flex: 1; min-width: 0; }
.forte-gallery-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    margin: 0 0 24px;
    color: inherit;
    line-height: 1.15;
}
.forte-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .85fr);
    gap: 28px;
    margin-bottom: 22px;
    align-items: stretch;
}
.forte-media-box {
    position: relative;
    background: #111;
    height: clamp(360px, 42vw, 560px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}
.forte-main-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity .22s ease;
}
.forte-overlay-text {
    position: absolute;
    top: 18px;
    right: 18px;
    max-width: calc(100% - 36px);
    background: var(--fd-accent);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.forte-description {
    color: var(--fd-desc-clr) !important;
    font-size: 16px;
    line-height: 1.8;
    padding: 22px;
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: auto;
}
.forte-description p:first-child { margin-top: 0; }
.forte-description p:last-child { margin-bottom: 0; }
.forte-toolbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 16px;
}
.forte-control,
.forte-slide-btn {
    font-family: inherit;
    border: 0;
    cursor: pointer;
}
.forte-control {
    padding: 12px 20px;
    border-radius: 999px;
    background: #2c3e50;
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
    transition: transform .2s ease, opacity .2s ease;
}
.forte-control:hover { transform: translateY(-1px); opacity: .92; }
.forte-play { background: var(--fd-accent); }
.forte-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,.42);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.forte-slide-btn:hover { background: rgba(0,0,0,.65); }
.forte-slide-btn.forte-prev { left: 16px; }
.forte-slide-btn.forte-next { right: 16px; }
.forte-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 2px 4px;
    scrollbar-width: thin;
}
.forte-thumb {
    flex: 0 0 auto;
    width: 88px;
    height: 66px;
    padding: 0;
    border-radius: 10px;
    border: 2px solid transparent;
    background: #111;
    overflow: hidden;
    cursor: pointer;
    opacity: .62;
    transition: all .18s ease;
}
.forte-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.forte-thumb.active {
    opacity: 1;
    border-color: var(--fd-accent);
    transform: translateY(-1px);
}
.forte-gallery-empty {
    padding: 18px;
    border-radius: 10px;
    background: #fff3cd;
    color: #664d03;
}
@media (max-width: 992px) {
    .forte-container { flex-direction: column; }
    .forte-menu-column {
        width: 100%;
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding-right: 0;
        padding-bottom: 18px;
    }
    .forte-nav-list { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
    .forte-menu-item { white-space: nowrap; }
    .forte-main-grid { grid-template-columns: 1fr; }
    .forte-media-box { height: clamp(300px, 62vw, 480px); }
}
@media (max-width: 560px) {
    .forte-container { padding: 14px; border-radius: 14px; }
    .forte-media-box { height: 310px; border-radius: 12px; }
    .forte-description { padding: 16px; font-size: 15px; }
    .forte-control { flex: 1; padding: 11px 12px; }
    .forte-slide-btn { width: 38px; height: 38px; font-size: 28px; }
}
