.elementor-8160 .elementor-element.elementor-element-4e22d96{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-14be99c4 *//* ===== Glossary Modern Red UI ===== */

.cm-glossary {
    font-family: inherit;
    margin-top: 30px;
}

/* Main Container */
.glossary-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
}

/* ===== Alphabet Navigation ===== */

#glossaryList-nav {
    margin-bottom: 35px;
}

#glossaryList-nav .ln-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* All Buttons */
#glossaryList-nav .ln-letters a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #444;
    background: #f7f7f7;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Hover */
#glossaryList-nav .ln-letters a:hover {
    background: #e50914;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.25);
}

/* Active Selected */
#glossaryList-nav .ln-selected {
    background: linear-gradient(135deg, #ff1f3d, #b30000) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.35);
}

/* Disabled */
#glossaryList-nav .ln-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== Glossary List ===== */

.glossaryList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

/* Glossary Item */
.glossaryList li {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

/* Left Accent */
.glossaryList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ff1f3d, #b30000);
}

/* Hover Effect */
.glossaryList li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #ffd4d8;
}

/* Glossary Links */
.glossaryList li a {
    display: block;
    padding: 22px 28px;
    color: #1d1d1d;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

/* Link Hover */
.glossaryList li a:hover {
    color: #e50914;
}

/* Arrow Icon */
.glossaryList li a::after {
    content: "↗";
    float: right;
    font-size: 18px;
    color: #e50914;
    transition: transform 0.3s ease;
}

.glossaryList li:hover a::after {
    transform: translate(4px, -4px);
}

/* ===== Nothing Found ===== */

.glossaryList .ln-no-match {
    text-align: center;
    padding: 30px;
    background: #fff5f5;
    border-radius: 16px;
    color: #b30000;
    font-weight: 600;
}

/* ===== Title ===== */

.page .title,
h1.title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111;
    position: relative;
    display: inline-block;
}

/* Underline Accent */
.page .title::after,
h1.title::after {
    content: "";
    width: 70%;
    height: 5px;
    border-radius: 20px;
    background: linear-gradient(to right, #ff1f3d, #b30000);
    position: absolute;
    left: 0;
    bottom: -10px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

    .glossary-container {
        padding: 20px;
        border-radius: 18px;
    }

    #glossaryList-nav .ln-letters {
        gap: 8px;
    }

    #glossaryList-nav .ln-letters a {
        width: 38px;
        height: 38px;
        font-size: 13px;
        border-radius: 10px;
    }

    .glossaryList li a {
        padding: 18px 20px;
        font-size: 16px;
    }

    h1.title {
        font-size: 32px;
    }
}/* End custom CSS */