@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Theme colors (--color-primary/--color-secondary/--color-button-bg/--color-button-text)
   are declared per-site in base.html's inline <style> block, via site_color() in
   app/services/theming.py (Site column, falling back to its SiteTheme column, falling
   back to a hardcoded default). No :root block here - this file loads after that inline
   <style> in <head>, so a same-specificity :root rule here would always win the cascade
   and silently override every dynamic value, regardless of what's set in the DB. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    color: #1f1f1f;
}
h1, h2, h3, h4, h5, h6, p, a, input, button, label {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-style: normal;
}
p{
    font-size: 16px;
}
.full-container{
    width: 100%;
}
.container {
    max-width: 1300px;
    margin: 0px auto;
    padding: 0px 15px;
    width: 100%;
}
.header-bg{
    padding: 20px 0px;
    width: 100%;
    position: relative;
    background: url('../images/bannerbg.jpg') no-repeat center center;
    background-size: cover;
    height: 450px;
    @media (max-width: 1023px) {
        height: 270px;
        padding: 10px 0px 40px;
    }
    &:after{
        position: absolute;
        content: "";
        z-index: 0;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(0deg, rgba(40, 40, 40, .1), rgba(40, 40, 40, .8));
        @media (max-width: 767px) {
            background: linear-gradient(0deg, rgba(0, 0, 0, .5), #141414);
        }
    }
    .main-header{
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        .hamburger{
            position: absolute;
            left: 20px;
            top: 10px;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
            @media (max-width: 767px) {
                top: 6px;
                width: 22px;
                height: 22px;
                gap: 4px;
            }
            span{
                width: 100%;
                height: 3px;
                background-color: #fff;
                border-radius: 5px;
                transition: all 0.3s ease-in-out;
                display: block;
            }
        }
        .logo a{
            display: flex;
            position: relative;
            z-index: 1;
            img{
                width: 250px;
                @media (max-width: 767px) {
                    width: 150px;
                }
            }
        }
    }
    .search-bar{
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 720px;
        text-align: center;
        z-index: 1;
        @media (max-width: 767px) {
            padding: 0px 15px;
            top: 60%;
        }
        h2{
            color: #fff;
            text-align: center;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 35px;
            line-height: 1.1;
            @media (max-width: 767px) {
                margin-bottom: 20px;
                font-size: 26px;
            }
        }
        form{
            display: flex;
            justify-content: center;
            border-radius: 30px;
            box-shadow: 0 0 0 3px hsla(0, 0%, 100%, .5);
            height: 60px;
            @media (max-width: 767px) {
                height: auto;
                border-radius: 0px;
                box-shadow: none;
                display: block;
            }
            input[type="text"]{
                height: 60px;
                font-size: 16px;
                border-radius: 30px 0 0 30px;
                padding: 10px 10px 10px 25px;
                color: #2e2e2e;
                width: 100%;
                border: 0px;
                @media (max-width: 767px) {
                    font-size: 13px;
                    height: 40px;
                    border-radius: 20px;
                    padding: 10px 20px;
                    text-align: center;
                    box-shadow: 0 0 0 3px hsla(0, 0%, 100%, .5);
                }
            }
            button{
                height: 60px;
                width: 150px;
                padding: 5px 0;
                border-radius: 0 30px 30px 0;
                background-color: var(--color-button-bg);
                font-size: 20px;
                font-weight: 400;
                border: 0px;
                color: var(--color-button-text);
                cursor: pointer;
                transition: all 0.3s ease;
                @media (max-width: 767px) {
                    position: unset;
                    height: 40px;
                    border-radius: 20px;
                    box-shadow: 0 0 0 3px hsla(0, 0%, 100%, .5);
                    padding: 10px 20px;
                    margin-top: 10px;
                    width: 100%;
                    font-size: 13px;
                }
                &:hover{
                    background-color: var(--color-secondary);
                    transition: all 0.3s ease;
                }
            }
        }
    }
}

.ourcollections-section{
    margin-top: 75px;
    @media (max-width: 1023px) {
        margin-top: 30px;
    }
    .Collection-section {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 7px;
        overflow: auto;
        .collection-item {
            border-radius: 10px;
            position: relative;
            text-decoration: none;
            overflow: hidden;
            @media (max-width: 991px) {
                width: 220px;
            }
            &:hover{
                &::after{
                    transition: bottom 0.2s ease;
                    background: linear-gradient(0deg, var(--color-primary) 0%, rgba(0, 0, 0, 0.00) 100%);
                }
            }
            &::after{
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
                border-radius: 10px;
                transition: bottom 0.2s ease;
                background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
            }
            img {
                width: 100%;
                border-radius: 10px;
                height: 100%;
                object-fit: cover;
            }
            .content {
                position: absolute;
                bottom: 0;
                display: grid;
                padding: 12px;
                z-index: 2;
                .text {
                    h3 {
                        color: #FFF;
                        font-size: 16px;
                        font-weight: 400;
                        overflow: hidden;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        text-align: center;
                        @media (min-width: 768px) and (max-width: 1023px) {
                            font-size: 18px;
                        }
                        @media (max-width: 767px) {
                            font-size: 4.3vw;
                        }
                    }
                }
            }
        }
    }
}
.all-in-one-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #FFF;
    gap: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    @media (min-width: 768px) and (max-width: 1023px) {
        padding: 20px;
        gap: 20px;
    }
    @media (max-width: 767px) {
        grid-template-columns: auto;
        padding: 10px;
        gap: 25px;
    }
    .content {
        @media (max-width: 767px) {
            padding: 0px 20px 0px 20px;
        }
        .categoryname{
            font-size: 16px;
            font-weight: 400;
            line-height: 25px;
            color: var(--color-primary);
            margin-bottom: 10px;
            display: block;
            @media (max-width: 767px) {
               text-align: center;
            }
        }
        h3 {
            font-size: 33px;
            font-weight: 600;
            line-height: 42px;
            margin-bottom: 15px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            @media (min-width: 768px) and (max-width: 1023px) {
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                font-size: 28px;
                margin-bottom: 5px;
            }
            @media (max-width: 767px) {
                text-align: center;
                -webkit-line-clamp: 3;
                font-size: 6.7vw;
                line-height: 120%;
            }
            a{
                text-decoration: none;
                color: #1f1f1f;
                transition: all 0.3s ease;
                &:hover{
                    color: var(--color-primary);
                    transition: all 0.3s ease;
                }
            }
        }
        p {
            color: #3D3D3D;
            font-size: 16px;
            font-weight: 400;
            line-height: 25px; /* 156.25% */
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            @media (min-width: 768px) and (max-width: 1023px) {
                font-size: 14px;
                line-height: 22px;
            }
            @media (max-width: 767px) {
                text-align: center;
                -webkit-line-clamp: 4;
            }
        }
        a.explore-btn {
            border-radius: 5px;
            background: var(--color-button-bg);
            width: 140px;
            height: 40px;
            display: flex;
            margin-top: 30px;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--color-button-text);
            font-size: 16px;
            gap: 10px;
            font-weight: 500;
            line-height: 25px;
            transition: all 0.3s;
            @media (min-width: 768px) and (max-width: 1023px) {
                margin-top: 10px;
            }
            @media (max-width: 767px) {
              margin: 10px auto 15px;
            }
            img {
                transition: transform 0.3s ease;
            }
            &:hover {
                background: var(--color-secondary);
                transition: all 0.3s;
                img {
                    transform: rotate(30deg);
                    transition: transform 0.3s ease;
                }
            }
        }
    }
    a.image {
        width: 100%;
        height: 100%;
        min-width: 0;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }
    }
}

.allinone-section {
    margin-top: 75px;
    @media (min-width: 768px) and (max-width: 1023px) {
        margin-top: 40px;
    }
    @media (max-width: 767px) {
        margin-top: 35px;
    }
    h2{
        font-size: 33px;
        font-weight: 600;
        margin-bottom: 22px;
    }
    .read-more-wrap {
        text-align: center;
        margin-top: 30px;
        a.explore-btn {
            border-radius: 5px;
            background: var(--color-button-bg);
            width: 140px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--color-button-text);
            font-size: 16px;
            gap: 10px;
            font-weight: 500;
            line-height: 25px;
            transition: all 0.3s;
            &:hover {
                background: var(--color-secondary);
                transition: all 0.3s;
            }
        }
    }
}
.article-section {
    display: flex;
    gap: 50px;
    margin-top: 25px;
    @media (min-width: 768px) and (max-width: 1023px) {
        gap: 15px;
    }
    @media (max-width: 767px) {
        flex-direction: column;
        gap: 15px;
    }
    .articles {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        @media (max-width: 767px) {
            grid-template-columns:auto;
        }
        .item {
            display: grid;
            grid-template-columns: 0.6fr 1fr;
            gap: 20px;
            align-items: center;
            margin-bottom: 30px;
            @media (min-width: 768px) and (max-width: 1023px) {
                gap: 10px;
            }
            @media (max-width: 767px) {
                flex-direction: column;
                gap: 10px;
                margin-bottom: 0px;
            }
            &:hover {
                .icon {
                    img {
                        transform: rotate(30deg);
                        transition: transform 0.3s ease;
                    }
                }
            }
            .image {
                height: 100%;
                width: 100%;
                flex: 1;
                img {
                    display: flex;
                    border-radius: 10px;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            .content {
                flex: 1;
                a.title {
                    color: #1a1a1a;
                    font-size: 20px;
                    text-decoration: none;
                    font-weight: 600;
                    line-height: 28px;
                    transition: all 0.3s ease;
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    @media (min-width: 768px) and (max-width: 1023px) {
                        font-size: 18px;
                        line-height: 28px;
                        margin-bottom: 0px;
                        -webkit-line-clamp: 1;
                    }
                    @media (max-width: 767px) {
                        font-size: 16px;
                        margin-bottom: 0px;
                        line-height: 22px;
                    }
                    &:hover{
                        color: var(--color-primary);
                        transition: all 0.3s ease;
                    }
                }
                p {
                    color: #3D3D3D;
                    font-size: 14px;
                    font-weight: 400;
                    margin-top: 10px;
                    line-height: 22px;
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    @media (max-width: 767px) {
                        margin-top: 5px;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                    }
                }
                a.icon {
                    width: 37px;
                    height: 37px;
                    display: block;
                    margin-top: 10px;
                    @media (min-width: 768px) and (max-width: 1023px) {
                        margin-top: 10px;
                    }
                    @media (max-width: 767px) {
                        margin-top: 10px;
                        display: none;
                    }
                    img {
                        width: 100%;
                        transition: transform 0.3s ease;
                    }
                }
            }
        }
    }
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
    a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        border-radius: 5px;
        border: 1px solid #ccc;
        text-decoration: none;
        color: #1f1f1f;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s;
        &:hover {
            background: var(--color-button-bg);
            color: var(--color-button-text);
            border-color: var(--color-button-bg);
        }
        &.active {
            background: var(--color-button-bg);
            color: var(--color-button-text);
            border-color: var(--color-button-bg);
        }
    }
}
.footer-section{
    margin-top: 75px;
    background: #1f1f1f;
    padding: 20px 0px;
    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        .footer-content{
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
            @media (min-width: 768px) and (max-width: 991px) {
                flex-direction: column;
            }
            @media (max-width: 767px) {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            .logo{
                img{
                    width: 200px;
                }
            }
            .footer-links{
                display: flex;
                gap: 20px;
                @media (max-width: 767px) {
                    flex-direction: column;
                    gap: 10px;
                }
                a{
                    color: #fff;
                    text-decoration: none;
                    font-size: 14px;
                    transition: all 0.3s ease;
                    &:hover{
                        color: var(--color-secondary);
                        transition: all 0.3s ease;
                    }
                }
            }
        }
        .footer-bottom{
            margin-top: 20px;
            text-align: center;
            border-top: 1px solid #3D3D3D;
            width: 100%;
            padding-top: 20px;
            p{
                margin: 0px;
                color: #cfcfcf;
                font-size: 12px;
                a{
                    color: #cfcfcf;
                }
            }
        }
    }
}
.articles-section {
    margin: 30px 0px 75px 0px;
    .container {
        max-width: 1000px;
        h2{
            font-size: 33px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 22px;
        }
        .article-author {
            font-size: 14px;
            font-weight: 400;
            color: #6b6b6b;
            margin: -12px 0 20px 0;
        }
        h3{
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        p {
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            margin-bottom: 20px;
        }
        ul{
            margin-bottom: 20px;
            list-style-type: disc;
            padding-left: 25px;
            li{
                font-size: 16px;
                font-weight: 400;
                line-height: 28px;
                margin-bottom: 10px;
            }
        }
        img{
            margin-bottom: 20px;
            width:100%;
        }
    }
}
.mobile-menu {
    position: fixed;
    background: rgba(0,0,0,.6);
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}
.mobile-menu.active {
    display: block;
}
.mobile-menu a {
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #ebebeb;
    padding: 12px 0 10px;
    display: block
}
.mobile-menu a:hover {
    color: #ff8150
}
.mobile-menu-wrapper {
    background: #fff;
    width: 100%;
    max-width: 320px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 50px 20px 0
}
@media (max-width: 700px) {
    .mobile-menu-wrapper {
        max-width:unset
    }
}
.mobile-menu-close {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    top: 10px;
    font-size: 24px;
    right: 10px;
}
.innerpage-header{
    background: #fff;
    height: 65px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 4px 3px rgba(79, 79, 79, .14);
    padding: 15px 0px;
    .main-header{
        display: flex;
        justify-content: space-between;
        gap: 40px;
        @media (max-width: 767px) {
           gap: 10px;
        }
        .logo a img{
            width: 200px;
            @media (max-width: 767px) {
                width: 120px;
                position: relative;
                top: 10px;
            }
        }
        .search-bar {
            width: 100%;
            margin-left: auto;
            form {
                float: right;
                width: 100%;
                position: relative;
                input[type="text"] {
                    height: 40px;
                    font-size: 14px;
                    padding: 10px;
                    color: #000;
                    width: 100%;
                    border: 1px solid #ccc;
                    border-radius: 5px;
                    background: #f2fefe;
                    display: none;
                    @media (max-width: 767px) {
                        font-size: 12px;
                    }
                }
                input.active{
                    display: block;
                }
                button {
                    width: 30px;
                    height: 30px;
                    background: transparent;
                    border: 0;
                    font-size: 22px;
                    color: #353535;
                    position: absolute;
                    right: 10px;
                    top: 4px;
                    cursor: pointer;
                    z-index: 1;
                    @media (max-width: 767px) {
                        font-size: 18px;
                    }
                }
            }
        }
    }
}
.innerbanner{
    height: 315px;
    width: 100%;
    background: url('../images/innerbanner.jpg') no-repeat center center;
    background-size: cover;
    background-position: 50%;
    @media (max-width: 767px) {
        height: 290px;
        background: url('../images/about-mobile.jpg') no-repeat center center;
    }
}
.innerpage-section{
    margin: 0px 0px 75px 0px;
    position: relative;
    .container {
        max-width: 1100px;
        background: #fff;
        margin-top: -100px;
        padding: 30px;
        border-radius: 16px 16px 0px 0px;
        @media (max-width: 767px) {
            max-width: 95%;
            padding: 15px;
        }
        .pagename{
            margin-bottom: 10px;
            display: block;
            p{
                margin: 0px;
                font-size: 18px;
                font-weight: 500;
                color: var(--color-primary);
            }
        }
        h2{
            font-size: 33px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 22px;
            @media (max-width: 767px) {
                font-size: 26px;
                margin-bottom: 10px;
            }
        }
        h3{
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            @media (max-width: 767px) {
                font-size: 18px;
                margin-bottom: 10px;
            }
        }
        address{
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            font-style: normal;
            @media (max-width: 767px) {
                font-size: 14px;
                line-height: 24px;
            }
        }
        p {
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            margin-bottom: 20px;
            @media (max-width: 767px) {
                font-size: 14px;
                line-height: 24px;
            }
            a{
                color: #1f1f1f;
                text-decoration: none;
                transition: all 0.3s ease;
            }
        }
        ul{
            margin-bottom: 20px;
            list-style-type: disc;
            padding-left: 20px;
            li{
                font-size: 16px;
                font-weight: 400;
                line-height: 28px;
                margin-bottom: 10px;
                @media (max-width: 767px) {
                    font-size: 14px;
                    line-height: 24px;
                }
            }
        }
        .contact-button{
            display: inline-block;
            padding: 10px 40px;
            background-color: var(--color-button-bg);
            color: var(--color-button-text);
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
            margin-top: 20px;
            &:hover {
                background-color: var(--color-secondary);
            }
        }
        .withus-section{
            width: 100%;
            display: flex;
            gap:20px;
            margin-top: 50px;
            @media (max-width: 767px) {
                flex-direction: column;
            }
            .item{
                flex: 1;
                border: 1px solid var(--color-secondary);
                padding: 20px;
                border-radius: 10px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                h3{
                    margin-bottom: 15px;
                }
                p{
                    margin-bottom: 0px;
                }
                a.contact-btn{
                    display: inline-block;
                    padding: 10px 40px;
                    background-color: var(--color-secondary);
                    color: var(--color-button-text);
                    text-decoration: none;
                    border-radius: 5px;
                    font-size: 16px;
                    transition: background-color 0.3s ease;
                    margin-top: 20px;
                    &:hover {
                        background-color: var(--color-primary);
                    }
                }
            }
        }
    }
}
.terms-section{
    min-height: 500px;
    .container {
        max-width: 1300px;
        background: #fff;
        padding: 30px 15px;
        border-radius: 16px 16px 0px 0px;
        h2{
            font-size: 33px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 22px;
            @media (max-width: 767px) {
                font-size: 28px;
                line-height: 33px;
            }
        }
        h3{
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            @media (max-width: 767px) {
                font-size: 18px;
            }
        }
        p {
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            margin-bottom: 15px;
            @media (max-width: 767px) {
                font-size: 14px;
                line-height: 24px;
            }
            a{
                color: #15a5ff;
                text-decoration: underline;
            }
        }
        ul{
            margin-bottom: 20px;
            list-style-type: disc;
            padding-left: 20px;
            li{
                font-size: 16px;
                font-weight: 400;
                line-height: 28px;
                margin-bottom: 10px;
                @media (max-width: 767px) {
                    font-size: 14px;
                    line-height: 24px;
                }
                a{
                    color: #15a5ff;
                    text-decoration: underline;
                }
            }
        }
        .table-structure{
            overflow-y: auto;
        }
        table {
            width: 100%;
            margin-bottom: 20px;
            border-collapse: collapse;
            td, th{
                border: 1px solid #ccc;
                border-collapse: collapse;
            }
            thead {
                th {
                    background: #efefef;
                    padding: 15px;
                    color: #000;
                    font-weight: 400;
                }
            }
            tbody {
                tr {
                    td {
                        padding: 10px 15px;
                    }
                }
            }
        }
    }
}
.search-section{
    background: #e9fafe;
    .container {
        max-width:814px;
        padding: 15px 13px 30px;
        .adrelated {
            display: block;
            text-align: right;
            p {
                font-size: 13px;
                color: #666;
                font-weight: 400;
                text-align: right;
                padding: 11px 0 2px;
            }
        }
        .items {
            .item {
                display: grid;
                grid-template-columns: 1fr 140px;
                grid-gap: 20px;
                width: 100%;
                background: #fff;
                border: 1px solid #66a8ec;
                margin-bottom: 11px;
                position: relative;
                overflow: hidden;
                padding: 13px;
                @media (max-width: 600px) {
                    grid-template-columns: auto;
                    grid-gap: 10px;
                }
                &:hover {
                    background: #fff1bb;
                    @media (max-width: 600px) {
                        background: #fff;
                    }
                }
                .leftcontent {
                    .li-title {
                        @media (max-width: 600px) {
                            text-align: center;
                        }
                        a{
                            color: #e80037;
                            font-size: 17px;
                            font-weight: 700;
                            text-decoration: underline;
                            line-height: 17px;
                            @media (max-width: 600px) {
                                text-align: center;
                            }
                        }
                    }
                    .li-descr {
                        line-height: 16px;
                        @media (max-width: 600px) {
                            text-align: center;
                        }
                        a {
                            color: #444;
                            font-size: 13px;
                        }
                    }
                    .url {
                        line-height: 16px;
                        @media (max-width: 600px) {
                            text-align: center;
                        }
                        a {
                            color: #3ca3fa;
                            font-size: 13px;
                        }
                    }
                    .linkls {
                        line-height: 16px;
                        margin-bottom: 5px;
                        @media (max-width: 600px) {
                            text-align: center;
                        }
                        a {
                            color: #000;
                            text-decoration: none;
                            font-size: 13px;
                            font-weight: 400;
                        }
                    }
                    .li-links {
                        margin-top: 8px;
                        display: flex;
                        flex-wrap: wrap;
                        gap: 6px 20px;
                        @media (max-width: 600px) {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                            gap: 8px 16px;
                        }
                        .li-link {
                            a span {
                                color: #000;
                                text-decoration: none;
                                font-size: 13px;
                                font-weight: 400;
                                @media (max-width: 600px) {
                                    font-size: 16px;
                                }
                            }
                        }
                    }
                }
                .rightbtn {
                    padding-top: 5px;
                    @media (max-width: 600px) {
                        padding-top: 14px;
                    }
                    a {
                        font-size: 15px;
                        color: var(--color-button-text);
                        font-weight: 600;
                        display: flex;
                        background: var(--color-secondary);
                        position: relative;
                        height: 39px;
                        border-radius: 20px;
                        overflow: hidden;
                        padding: 8px 20px;
                        justify-content: space-between;
                        align-items: center;
                        @media (max-width: 600px) {
                            grid-template-columns: auto;
                            gap: 10px;
                            justify-content: center;
                            border-radius: 25px;
                            height: 48px;
                            font-size: 18px;
                            background: #e2332b;
                        }
                        i {
                            font-size: 18px;
                        }
                    }
                }
            }
        }

    }
}

/* Mobile ad-card redesign (matches de.srchhelp.com's search-top5-new: bigger
   touch targets, stacked layout, full-width red CTA) - deliberately dropped
   the hover-darken-on-tap effect from that reference, since hover doesn't
   make sense on touch and just causes a "stuck highlighted" look. */
@media (max-width: 600px) {
    .search-section .items .item {
        border-radius: 10px;
        padding: 16px;
    }
    .search-section .items .item .leftcontent .li-title a {
        font-size: 20px;
        line-height: 1.25;
    }
    .search-section .items .item .leftcontent .li-descr {
        margin-bottom: 10px;
    }
    .search-section .items .item .leftcontent .li-descr a {
        font-size: 16px;
    }
    .search-section .items .item .leftcontent .url {
        margin-bottom: 14px;
        font-size: 14px;
    }
}