/* ============================================================
   Custom Post List Widget – All Styles v2.0
   File: /elementor/assets/css/post-list-widget.css
   ============================================================ */

/* ---- Reset & Base ---- */
.cpl-widget-wrap *,
.cpl-widget-wrap *::before,
.cpl-widget-wrap *::after {
    box-sizing: border-box;
}

.cpl-widget-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-top: 3px solid #111;
    padding-top: 10px;
}

/* ============================================================
   Section Header: label + nav arrows side by side
   ============================================================ */
.cpl-section-header {
    margin: 30px 0px;
}
.dont__miss .cpl-section-header {
    margin-top: 0px !important;
}
.cpl-section-header{
    
}
/* Section Label — yellow pill like screenshot */
.cpl-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    background: #e8c000;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.15s;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
}
.cpl-section-label:hover {
    opacity: 0.85;
}

/* Section divider line */
.cpl-section-divider {
    height: 1px;
    background: #e5e5e5;
    margin-bottom: 14px;
}
.cpl-meta-sep{
    margin: 0px 5px;
}
/* ============================================================
   Prev / Next Nav Arrows
   ============================================================ */
.cpl-nav-arrows {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 30px;
}

.cpl-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    padding: 0;
    line-height: 1;
}
.cpl-nav-btn:hover:not(:disabled) {
    background: #111;
    border-color: #111;
    color: #fff;
}
.cpl-nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

/* ============================================================
   Load More Bar (above posts)
   ============================================================ */
.cpl-load-more-bar {
    margin-bottom: 12px;
    text-align: center;
}

.cpl-load-more-btn {
    display: inline-block;
    padding: 7px 22px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s;
    line-height: 1.4;
}
.cpl-load-more-btn:hover:not(:disabled) {
    background: #333;
}
.cpl-load-more-btn:disabled {
    opacity: 0.55;
    cursor: default;
}

/* ============================================================
   Posts Area — transition container
   ============================================================ */
.cpl-posts-area {
    transition: opacity 0.25s, filter 0.25s;
    min-height: 60px;
    position: relative;
}

/* ============================================================
   Spinner
   ============================================================ */
.cpl-spinner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.cpl-spinner {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 3px solid #e5e5e5;
    border-top-color: #111;
    border-radius: 50%;
    animation: cpl-spin 0.7s linear infinite;
}

@keyframes cpl-spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   Post title
   ============================================================ */
/*.cpl-post-title {*/
/*    font-size: 15px;*/
/*    font-weight: 700;*/
/*    margin: 0 0 6px 0;*/
/*    padding: 0;*/
/*}*/
.cpl-post-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.15s;
}
.cpl-post-title a:hover {
    color: #cc0000;
}

/* Meta */
.cpl-post-meta {
    font-size: 11.5px;
    color: #777;
    margin-bottom: 4px;
    line-height: 1.4;
}
.cpl-post-meta a {
    color: #777;
    text-decoration: none;
}
.cpl-post-meta a:hover { color: #cc0000; }
.cpl-meta-sep { opacity: 0.5; }

/* Excerpt */
.cpl-excerpt {
    font-size: 12.5px;
    color: #555;
    line-height: 1.5;
    margin: 4px 0 0;
}

/* Category Badge */
.cpl-category-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #1a73e8;
    color: #fff;
    padding: 2px 7px;
    margin-bottom: 5px;
    text-decoration: none;
    line-height: 1.6;
}
.cpl-style-6 .cpl-s6-small-grid .cpl-post-item:first-child .cpl-post-title a {
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 500;
    line-height: 30px;
}

/* Comments badge */
.cpl-comments-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #555;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
    line-height: 1;
}

/* Thumbnail */
.cpl-thumb-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.cpl-thumb-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.cpl-thumb-link:hover img {
    transform: scale(1.04);
}
.cpl-no-thumb {
    background: #ddd;
    width: 100%;
    height: 100%;
    min-height: 80px;
}

/* No posts */
.cpl-no-posts {
    color: #888;
    font-size: 13px;
    padding: 10px 0;
}

/* Global category badge override */
.cpl-category-badge {
    color: #ffffff;
    padding: 3px 7px;
    background-color: rgba(0, 0, 0, 0.7) !important;
    font-family: var(--td_default_google_font_2);
    line-height: 13px;
    font-weight: 500;
    text-transform: uppercase;
    pointer-events: auto;
}
.cpl-category-badge:hover {
    background-color: #1a73e8 !important;
}

/* Style 6 — remove top border */
.cpl-widget-wrap.cpl-style-6 {
    border-top: 0px !important;
    border-top-color: transparent !important;
}
/* Style 6 small card title font */
.cpl-s6-small-card .cpl-post-title a {
    font-size: 16px !important;
    margin-bottom: 7px;
    line-height: 1.4;
    min-height: 22px;
}


/* ============================================================
   STYLE 1 – Vertical List
   ============================================================ */
.cpl-style-1 .cpl-section-header{
    border-bottom:2px solid #000;
}
.cpl-style-1 .cpl-style-1-inner,
.cpl-style-1 .cpl-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cpl-post-item{
    margin-bottom: 0px !important;
}
.cpl-style-1 .cpl-post-item {
    display: flex;
    gap: 40px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    align-items: flex-start;

}
.cpl-style-1 .cpl-post-item:last-child {
    border-bottom: none;
}
.cpl-style-1 .cpl-thumb-wrap {
    width: 40%;
    height: 200px;
    min-width: 100px;
}
.cpl-style-1 .cpl-content-wrap {
    flex: 1;
    min-width: 0;
}
.cpl-style-1 .cpl-post-title {
    font-size: 27px;
    font-weight: 400;
}

/* ============================================================
   STYLE 2 – Featured + Sidebar
   ============================================================ */
.cpl-style-2 .cpl-post-item.cpl-s2-item .cpl-post-title{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
.cpl-style-2 .cpl-section-header{
    border-bottom:2px solid #E42719 !important;
}
.dont__miss .cpl-style-2 .cpl-section-header{
    border-bottom:2px solid #F9C100 !important;
}
.cpl-style-2 .cpl-style-2-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
}
.main_meta_style2{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.cpl-style-2 .cpl-s2-featured-thumb {
    position: relative;
    margin-bottom: 10px;
}
.cpl-style-2 .cpl-post-meta .cpl-author , .cpl-style-3 .cpl-post-meta .cpl-author , .cpl-style-1 .cpl-post-meta .cpl-author{
    font-size: 11px;
    font-weight: 700;
    color: #000;
}
.cpl-style-2 .cpl-s2-featured-thumb img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.cpl-style-2 .cpl-featured-title {
    font-size: 21px;
    line-height: 30px;
    font-weight: 500;
}
.cpl-style-2 .cpl-s2-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cpl-style-2 .cpl-s2-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    align-items: flex-start;
}
.cpl-style-2 .cpl-s2-item:first-child {
    padding-top: 0;
}
.cpl-style-2 .cpl-s2-item .cpl-thumb-wrap {
    width: 100%;
    height: 100px;
    max-width: 40%;
}
.cpl-style-2 .cpl-s2-item .cpl-post-title {
    font-size: 13px;
}

/* ============================================================
   STYLE 3 – Two Column Grid
   ============================================================ */
   
   /* Style 2 – BG image featured thumb */
.cpl-style-2 .cpl-s2-featured-thumb .cpl-thumb-link {
    display: block;
    text-decoration: none;
}

.cpl-style-2 .cpl-s2-featured-thumb .cpl-bg-thumb {
    position: relative;
    width: 100%;
    height: 300px;           /* adjust to match your current featured image height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
    display: block;
}

/* Category badge – bottom left of featured image */
.cpl-style-2 .cpl-s2-featured-thumb .cpl-bg-thumb .cpl-category-badge,
.cpl-style-2 .cpl-s2-featured-thumb .cpl-bg-thumb .cpl-overlay-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #222;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    text-decoration: none;
    letter-spacing: 0.5px;
    z-index: 2;
    line-height: 1.4;
}

.cpl-style-2 .cpl-s2-featured-thumb .cpl-bg-thumb .cpl-category-badge:hover,
.cpl-style-2 .cpl-s2-featured-thumb .cpl-bg-thumb .cpl-overlay-badge:hover {
    background-color: #3A863D;
}

/* Hide old img tag inside featured thumb (safety fallback) */
.cpl-style-2 .cpl-s2-featured-thumb img {
    display: none;
}
   
   /* BG image thumb for top cards */
.cpl-style-3 .cpl-s3-top-card .cpl-thumb-link {
    display: block;
    text-decoration: none;
}

.cpl-style-3 .cpl-s3-top-card .cpl-bg-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e0e0e0; /* fallback if no image */
    display: block;
}

/* Category badge inside the BG image – bottom left */
.cpl-style-3 .cpl-s3-top-card .cpl-bg-thumb .cpl-category-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #222;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    text-decoration: none;
    letter-spacing: 0.5px;
    z-index: 2;
    line-height: 1.4;
}

.cpl-style-3 .cpl-s3-top-card .cpl-bg-thumb .cpl-category-badge:hover {
    background-color: #3A863D;
}

/* Remove the old img tag styles since we're using bg now */
.cpl-style-3 .cpl-s3-top-card .cpl-thumb-wrap img {
    display: none;
}

.cpl-style-3 .cpl-section-header{
    border-bottom:2px solid #3A863D;
}
.travel__section .cpl-style-3 .cpl-section-header{
    border-bottom:1px solid #5D7987;
}
.cpl-style-3 .cpl-s3-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 16px;
}
.cpl-style-3 .cpl-post-item.cpl-s3-small-item{
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.cpl-style-3 .cpl-post-item.cpl-s3-top-card .cpl-post-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 6px 0;
    padding: 0;
    margin: 10px 0px;
}
.cpl-style-3 .cpl-s3-top-card .cpl-thumb-wrap {
    margin-bottom: 10px;
}
.cpl-style-3 .cpl-s3-top-card .cpl-thumb-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.cpl-style-3 .cpl-s3-bottom-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 14px;
}
.cpl-style-3 .cpl-s3-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cpl-style-3 .cpl-s3-small-item {
    display: flex;
    gap: 40px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}
.cpl-style-3  .cpl-post-item.cpl-s3-small-item .cpl-category-badge{
    display: none;   
}
.cpl-style-3 .cpl-s3-small-item .cpl-thumb-wrap {
    width: 100%;
    height: 100px;
    max-width: 30%;
}
.cpl-style-3 .cpl-s3-small-item .cpl-post-title {
    font-size: 12.5px;
}


/* ============================================================
   STYLE 4 – Mixed Featured
   ============================================================ */
.cpl-style-4 .cpl-s4-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 14px;
}
.cpl-style-4 .cpl-s4-featured-card .cpl-s4-thumb {
    margin-bottom: 10px;
}
.cpl-style-4 .cpl-s4-featured-card .cpl-s4-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
.cpl-style-4 .cpl-featured-title {
    font-size: 16px;
    line-height: 1.3;
}
.cpl-style-4 .cpl-s4-bottom-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid #e5e5e5;
    padding-top: 12px;
}
.cpl-style-4 .cpl-s4-small-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.cpl-style-4 .cpl-s4-small-item .cpl-thumb-wrap {
    width: 70px;
    height: 55px;
    min-width: 70px;
}
.cpl-style-4 .cpl-s4-small-item .cpl-post-title {
    font-size: 12.5px;
}


/* ============================================================
   STYLE 5 – Hero + Side List (Don't Miss)
   ============================================================ */
.cpl-style-5 .cpl-style-5-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
}
.cpl-style-5 .cpl-s5-thumb {
    margin-bottom: 10px;
}
.cpl-style-5 .cpl-s5-thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.cpl-style-5 .cpl-hero-title {
    font-size: 20px;
    line-height: 1.3;
}
.cpl-style-5 .cpl-s5-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cpl-style-5 .cpl-s5-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    align-items: flex-start;
}
.cpl-style-5 .cpl-s5-item:first-child {
    padding-top: 0;
}
.cpl-style-5 .cpl-s5-item .cpl-thumb-wrap {
    width: 80px;
    height: 62px;
    min-width: 80px;
}
.cpl-style-5 .cpl-s5-item .cpl-post-title {
    font-size: 13px;
}


/* ============================================================
   STYLE 6 – HERO BANNER + TRENDING GRID (background-image approach)
   ============================================================ */

/* Main 2-column grid: left big hero, right small grid */
.cpl-style-6 .cpl-s6-grid {
    display: grid !important;
    grid-template-columns: 1.35fr 1fr !important;
    gap: 5px !important;
    align-items: stretch;
}

/* Right side: 1 top full-width + 2 bottom side by side */
.cpl-style-6 .cpl-s6-small-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5px !important;
    align-content: start;
}

/* First small card spans full right-column width */
.cpl-style-6 .cpl-s6-small-grid .cpl-post-item:first-child {
    grid-column: 1 / -1 !important;
}

/* ── HERO CARD (background-image) ── */
.cpl-style-6 .cpl-s6-hero-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    height: 455px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
}

/* FIX: Zoom via ::after pseudo-element — background-size transition doesn't work */
.cpl-style-6 .cpl-s6-hero-card::after,
.cpl-style-6 .cpl-s6-small-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.45s ease;
    z-index: 0;
}

.cpl-style-6 .cpl-s6-hero-card:hover::after,
.cpl-style-6 .cpl-s6-small-card:hover::after {
    transform: scale(1.07);
}

/* gradient overlay via ::before — sits above zoom layer */
.cpl-style-6 .cpl-s6-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .88) 0%,
        rgba(0, 0, 0, .35) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* hero text content — above both layers */
.cpl-style-6 .cpl-s6-hero-card .cpl-content-wrap {
    position: relative;
    z-index: 2;
    padding: 18px 16px;
    width: 100%;
}

.cpl-style-6 .cpl-s6-hero-card .cpl-post-title a,
.cpl-style-6 .cpl-s6-hero-card .cpl-s6-hero-title {
    color: #fff !important;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.3;
}

.cpl-style-6 .cpl-s6-hero-card .cpl-post-meta,
.cpl-style-6 .cpl-s6-hero-card .cpl-post-meta a {
    color: rgba(255, 255, 255, .75) !important;
}

/* ── SMALL CARDS (background-image) ── */
.cpl-style-6 .cpl-s6-small-card {
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: flex-end !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #222;
}

/* gradient overlay on small cards — above zoom layer */
.cpl-style-6 .cpl-s6-small-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .25) 55%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Top-right card: taller */
.cpl-style-6 .cpl-s6-small-grid .cpl-post-item:first-child {
    height: 282px;
}

/* Bottom two small cards: shorter */
.cpl-style-6 .cpl-s6-small-grid .cpl-post-item:not(:first-child) {
    height: 169px;
}

/* content on small cards — above gradient */
.cpl-style-6 .cpl-s6-small-card .cpl-content-wrap {
    position: relative;
    z-index: 2;
    padding: 10px 12px;
    width: 100%;
}

.cpl-style-6 .cpl-s6-small-grid .cpl-post-item:not(:first-child) .cpl-post-title a {
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.cpl-style-6 .cpl-s6-small-card .cpl-post-meta,
.cpl-style-6 .cpl-s6-small-card .cpl-post-meta a {
    color: rgba(255, 255, 255, .7) !important;
}

/* Category badges — highest layer */
.cpl-style-6 .cpl-overlay-badge {
    z-index: 3 !important;
}
.cpl-style-6 .cpl-section-header{
    border-bottom:2px solid #000;

}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cpl-post-title a{
        font-size: 24px !important;
        line-height: 30px !important;
        font-weight: 500 !important;
    }
    .cpl-s6-small-card .cpl-post-title a {
        font-size: 24px !important;
        line-height: 30px;
    }
    .cpl-style-6 .cpl-s6-small-grid .cpl-post-item:not(:first-child) {
        height: 230px;
    }
    .cpl-post-item .cpl-post-title a,.cpl-post-title a {
        font-size: 18px !important;
        line-height: 24px !important;
        font-weight: 500 !important;
    }
    .cpl-style-6 .cpl-s6-small-grid .cpl-post-item:first-child .cpl-post-title a {
        font-size: 18px !important;
        line-height: 24px !important;
        font-weight: 500 !important;
    }    
    h2.cpl-post-title.cpl-s6-hero-title {
        margin-top: 0px !important;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .cpl-style-6 .cpl-s6-grid {
        grid-template-columns: 1fr !important;
    }
    .cpl-style-6 .cpl-s6-hero-card {
        height: 320px;
    }
    .cpl-style-2 .cpl-style-2-inner {
        grid-template-columns: 1fr;
    }
    .cpl-style-5 .cpl-style-5-inner {
        grid-template-columns: 1fr;
    }
    .cpl-style-3 .cpl-s3-top-grid,.cpl-style-3 .cpl-s3-bottom-list,.cpl-style-3 .cpl-s3-small-item {
        gap: 10px;
    }
    .cpl-style-3 .cpl-s3-small-item .cpl-post-title,h4,h3{
        margin-top: 0px !important;
    }
    .cpl-post-title{
        line-height: 20px !important;
    }
    .cpl-section-header {
        margin: 10px 0px;
    }
    .cpl-style-3 .cpl-post-item.cpl-s3-top-card .cpl-post-title{
        line-height: 20px;

    }
    .cpl-style-2 .cpl-s2-item .cpl-thumb-wrap {
        width: 100%;
        height: 150px;
        max-width: 50%;
    }
    .cpl-style-2 .cpl-s2-item .cpl-thumb-wrap img {
        height: 150px;
    }
    .cpl-style-1 .cpl-post-title{
        line-height: 20px;
    }
    .ylc-search-bar {
        width: 400px !important;
    }.ylc-search-bar .search-field, .ylc-search-bar input[type="search"] {
        min-width: 300px !important;
    }
    .cpl-style-3 .cpl-s3-small-item .cpl-thumb-wrap {
        max-width: 40%;
    }
    .cpl-style-1 .cpl-post-item {
        gap: 10px;
    }
    .cpl-nav-arrows {
        margin-top: 0px;
    }
    .cpl-style-6 .cpl-s6-grid , .cpl-style-6 .cpl-s6-small-grid{
        gap: 15px !important;
    }
    .ylc-mobile-toggle:hover{
        background: none !important;
    }
    .ylc-mobile-toggle:hover{
        background: rgb(204, 51, 102) !important;
    }
    .ylc-mobile-toggle:focus{
        background: none !important;
    }
    .ylc-mobile-toggle:focus{
        background: rgb(204, 51, 102) !important;
    }
    .ylc-mobile-toggle .ylc-bar {
        background-color: white;
    }    
    .ylc-mobile-toggle:hover .ylc-mobile-toggle .ylc-bar {
        background-color: white;
    }    
    .ylc-mobile-toggle:focus .ylc-mobile-toggle .ylc-bar {
        background-color: white;
    }
    .ylc-mobile-toggle.is-open{
        background: rgb(204, 51, 102) !important;
    }
}
@media (max-width: 600px) {
    .cpl-style-4 .cpl-s4-top-grid,
    .cpl-style-4 .cpl-s4-bottom-list {
        grid-template-columns: 1fr;
    }
    .cpl-style-3 .cpl-s3-top-grid,
    .cpl-style-3 .cpl-s3-bottom-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cpl-style-6 .cpl-s6-small-grid {
        grid-template-columns: 1fr !important;
    }
    .cpl-style-6 .cpl-s6-small-grid .cpl-post-item:first-child {
        grid-column: 1 !important;
    }
    .cpl-style-2 .cpl-s2-item {
        display: grid;
        gap: 10px;
    }
    .cpl-style-2 .cpl-s2-item .cpl-thumb-wrap img {
        height: 250px;
    }
    .cpl-style-2 .cpl-s2-item .cpl-thumb-wrap {
        height: 250px;
        max-width: 100%;
    }
    .cpl-style-2 .cpl-style-2-inner {
        gap: 20px;
    }
    .cpl-style-3 .cpl-s3-top-card .cpl-bg-thumb .cpl-category-badge {
        bottom: 5px;
        left: 10px;
    }
    .cpl-style-3 .cpl-s3-small-item {
        display: grid;
    }
    .cpl-style-3 .cpl-s3-small-item .cpl-thumb-wrap {
        height: 250px;
        max-width: 100%;
    }
    .cpl-style-1 .cpl-post-item {
        display: grid;
    }
    .cpl-style-1 .cpl-thumb-wrap {
        width: 100%;
    }
    .ylc-search-bar {
        width: 340px !important;
    }
    .ylc-search-bar .search-field, .ylc-search-bar input[type="search"] {
        min-width: 240px !important;
    }
    .first__widgets .cpl-nav-arrows {
        margin-top: 20px;
    }
    .ylc-header-ad{
        display: none;
    }
    .ylc-logo{
        width: 100%;
    }
    .ylc-logo img, .ylc-logo .custom-logo {
        max-height: 90px;
        width: 100%;
        display: block;
        object-fit: contain;
        height: 60px;
        margin: auto;
    }
    .ylc-container{
        padding: 5px;
    }
    .ylc-nav-container{
        height: 35px;
    }
    .ylc-mobile-toggle{
        padding: 10px;
    }
    
}