/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1775164329
Updated: 2026-04-02 21:12:09

*/
/* ── Reset & variables ── */
:root {
    --ls-gold: #F5A623;
    --ls-gold-dk: #D4891A;
    --ls-bg: #111111;
    --ls-card-bg: #1A1A1A;
    --ls-text: #FFFFFF;
    --ls-muted: #888888;
    --ls-border: rgba(255,255,255,0.08);
    --ls-radius: 14px;
    --ls-trans: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Filter tabs ── */
.ls-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0 24px;
    font-family: 'Inter';
}

.ls-filter-btn {
    border-radius: 999px;
    border: 1px solid var(--ls-border);
    background: rgb(129 136 152 / 11%);
    color: var(--ls-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--ls-trans);
    letter-spacing: 0.02em;
    font-family: inherit;
    height: 38px;
    line-height: 36px;
    padding: 0 30px;
}

.ls-filter-btn:hover {
    border-color: var(--ls-gold);
    color: #000;
    background: var(--ls-gold);
}

.ls-filter-btn.active {
    background: var(--ls-gold);
    border-color: var(--ls-gold);
    color: #111111;
    font-weight: 700;
    height: 38px;
    line-height: 36px;
    padding: 0 30px;
}

/* ── Grid ── */
.ls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    font-family: 'Inter';
}

@media (max-width: 900px) {
    .ls-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 580px) {
    .ls-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Card ── */
.ls-card {
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--ls-trans), box-shadow var(--ls-trans);
    position: relative;
}

.ls-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.ls-card.hidden {
    display: none;
}

/* Card image wrapper */
.ls-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #222;
    border-radius: var(--ls-radius);
}

.elementor .ls-card__img-wrap img,
.ls-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ls-card:hover .ls-card__img-wrap img {
    transform: scale(1.06);
}

/* Hover overlay */
.ls-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 60%, transparent 100%);
    opacity: 0;
    transition: opacity var(--ls-trans);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.ls-card:hover .ls-card__overlay {
    opacity: 1;
}

.ls-card__overlay p {
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sector badge */
.ls-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ls-gold);
    color: #111;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0;
    z-index: 2;
}

/* Card body */
.ls-card__body {
    padding: 20px 0 35px;
}

.ls-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--ls-text);
    margin: 0 0 8px;
    line-height: 1.3;
}

.ls-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--ls-muted);
    font-size: 12.5px;
}

.ls-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ls-card__meta svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ── Modal ── */
.ls-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 66%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: ls-fade-in 0.2s ease;
}

.ls-modal-backdrop.open {
    display: flex;
}

@keyframes ls-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ls-modal {
    background: #1C1C1C;
    border-radius: 20px;
    width: 100%;
    max-width: 760px;
    overflow: hidden;
    position: relative;
    animation: ls-slide-up 0.3s cubic-bezier(0.34,1.56,0.64,1);
    border: 1px solid rgba(255,255,255,0.1);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes ls-slide-up {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ls-modal__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.ls-modal__img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 13px;
}

.ls-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(20,20,20,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 29px;
    transition: background var(--ls-trans);
    z-index: 10;
}

.ls-modal__close:hover {
    background: rgba(245,166,35,0.2);
    border-color: var(--ls-gold);
}

.ls-modal__sector {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ls-gold);
    color: #111;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    z-index: 5;
    text-transform: capitalize;
}

.ls-modal__body {
    padding: 28px 28px 32px;
}

.ls-modal__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--ls-text);
    margin: 0 0 10px;
    line-height: 1.25;
    font-family: 'Playfair Display';
}

.ls-modal__meta {
    display: flex;
    gap: 18px;
    color: var(--ls-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.ls-modal__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ls-modal__desc {
    color: rgba(255,255,255,0.75);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.ls-modal__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ls-modal__tag {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    padding: 5px 13px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ls-modal__tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ls-gold);
    opacity: 0.8;
    flex-shrink: 0;
}

/* Scrollbar for modal */
.ls-modal::-webkit-scrollbar {
    width: 4px;
}

.ls-modal::-webkit-scrollbar-track {
    background: transparent;
}

.ls-modal::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}
.ls-card__meta,
.ls-modal__meta {
    display: none;
}