 @font-face {
     font-family: "Chivo";
     src: url("Chivo-Regular.ttf") format("truetype");
     font-weight: 400;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Chivo";
     src: url("Chivo-Bold.ttf") format("truetype");
     font-weight: 700;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Sora";
     src: url("Sora-Regular.ttf") format("truetype");
     font-weight: 400;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: "Family";
     src: url("PTSerif-Regular.ttf") format("truetype");
     font-weight: 400;
     font-style: normal;
     font-display: swap;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Sora", sans-serif;
 }

 body {
     margin: 0;
     font-family: "Sora", sans-serif;
     background: #FFFFFF;
     color: #242424;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 img {
     width: auto;
     display: block;
     border-radius: 14px;
 }

 /* ===============================
   GLOBAL LINK HOVER UNDERLINE
   =============================== */

 a {
     text-decoration: none;
     border-bottom: 1px solid transparent;
     transition: border-color .25s ease;
 }

 a:hover {
     border-bottom-color: #564287;
 }

 a:hover {
     border-bottom-color: #564287;
 }

 /* ❌ Image anchor par hover effect remove */
 a:has(img):hover {
     border-bottom-color: transparent;
 }

 /* image link override */
 a>img {
     pointer-events: none;
 }

 /* ================= HEADER ================= */

 /* RESET */
 .primary-menu,
 .primary-menu ul,
 .mobile-menu-list,
 .mobile-menu-list ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 /* Default: Desktop */
 .wpml-desktop {
     display: block;
     width: 100%;
 }

 .wpml-ls-legacy-dropdown {
     width: 15.5em;
     max-width: max-content !important;
 }

 .wpml-mobile {
     display: none;
 }

 /* Mobile view */
 @media (max-width: 991px) {
     .wpml-desktop {
         display: none !important;
     }

     .wpml-mobile {
         display: block;
     }
 }


 /* HEADER */
 /* .header {
     background: #fff;
     padding: 12px 16px;
     display: flex;
     align-items: start;
     position: sticky;
     top: 0;
     z-index: 999;
     align-content: space-between;
     flex-wrap: wrap;
     justify-content: space-evenly;
 } */

 .header.site-header {
     width: 100%;
     display: block;
     background: #fff;
     position: sticky;
     top: 0;
     z-index: 999;
     text-align: center;
     /* center inline-flex items */
     padding: 0;
     /* padding moved inside */
 }

 .header.site-header {
     --header-padding: 12px 24px;
 }

 .logo {
     float: left;
     width: 12%;
     padding: 10px 10px;
     display: flex;
     align-items: center;
 }

 .header.site-header>.logo,
 .header.site-header>.header-right {
     display: inline-flex;
     align-items: center;
     vertical-align: middle;
 }

 .desktop-menu {
     display: inline-flex;
     align-items: center;
     width: 74%;
     justify-content: center;
     padding: 10px 0px !important;

 }

 /* HEADER RIGHT */
 .header-right {
     float: right;
     width: 14%;
     padding: 10px 10px;
     display: flex;
     justify-content: flex-end;
     align-items: center;
     gap: 10px;
 }

 /* ===== DESKTOP ===== */
 @media (min-width: 992px) {

     .header.site-header {
         width: 100%;
         background: #fff;
         position: sticky;
         top: 0;
         z-index: 999;
         text-align: center;
     }

     /* .logo {
         float: left;
         width: 15%;
         padding: 10px 10px;
         display: flex;
         align-items: center;
     } */

     /* .desktop-menu {
         display: inline-flex;
         align-items: center;
         width: 72%;
         justify-content: center;
         padding: 0 !important;
     } */

     /* .header-right {
         float: right;
         width: 13%;
         padding: var(--header-padding);
         display: flex;
         justify-content: flex-end;
         align-items: center;
     } */
 }

 /* ===== MOBILE & TABLET ===== */
 @media (max-width: 991px) {

     /* Reset desktop behavior */
     .logo,
     .desktop-menu,
     .header-right {
         float: none !important;
         width: auto !important;
     }

     .header.site-header {
         display: block;
         align-items: center;
         justify-content: space-between;
         padding: 10px 14px;
         text-align: left;
     }

     /* Logo left */
     .logo {
         display: flex;
         align-items: center;
         width: 50% !important;
         padding: 0px;
     }

     /* Hide desktop menu */
     .desktop-menu {
         display: none !important;
     }

     /* Right icons */
     .header-right {
         display: flex;
         align-items: center;
         gap: 10px;
         width: 49% !important;
     }
 }


 /* Force WPML language dropdown to show correctly */
 .menu-item-language:hover>ul,
 .menu-item-language.wpml-ls-current-language:hover>ul {
     display: block !important;
     opacity: 1 !important;
     visibility: visible !important;
     top: 100% !important;
 }

 /* Make sure submenu is positioned */
 .menu-item-language>ul {
     position: absolute;
     background: #fff;
     z-index: 99999;
     min-width: 160px;
 }

 .logo a {
     font-size: 22px;
     font-weight: 900;
     color: #111;
     text-decoration: none;
     margin-left: -10px;
 }


 .logo span {
     color: #564287;
 }

 .logo img {
     width: 225px;
     height: auto;
 }

 /* DESKTOP MENU */
 .desktop-menu {
     padding: var(--header-padding);
 }

 .primary-menu {
     display: block;
     align-items: center;
     padding-top: 0px;
 }

 .primary-menu>li {
     position: relative;
     padding: 10px 0;
     float: left;
     padding: 4px 9px;
 }

 .primary-menu li ul.sub-menu {
     position: absolute;
     top: 100%;
     left: 0;
     min-width: 220px;
     background: #fff;
     /* padding: 12px 0; */
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.25s ease;
     z-index: 999;
 }

 .primary-menu li:hover>ul.sub-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .primary-menu li ul.sub-menu li a {
     display: block;
     /* padding: 10px 18px; */
     font-size: 14px;
     color: #111;
     white-space: nowrap;
 }

 .primary-menu li ul.sub-menu li a:hover {
     /* background: #f5f7fa; */
     color: #f4b400;
     /* CryptoDNES yellow */
 }

 .primary-menu>li.menu-item-has-children>a::after {
     content: "▾";
     font-size: 11px;
     margin-left: 6px;
     opacity: 0.6;
 }


 .primary-menu>li>a {
     font-weight: 600;
     color: #374151;
     font-size: 16px;

 }



 /* Hide on desktop */
 @media (min-width: 992px) {
     .header-right .menu-toggle {
         display: none !important;
     }
 }

 /* Show on mobile */

 .search-btn {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     background: #f3f4f6;
     border: none;
     position: relative;
     cursor: pointer;
 }

 /* Circle */
 .search-btn::before {
     content: "";
     width: 14px;
     height: 14px;
     border: 2px solid #555;
     border-radius: 50%;
     position: absolute;
     top: 9px;
     left: 9px;
 }

 /* Handle */
 .search-btn::after {
     content: "";
     width: 8px;
     height: 2px;
     background: #555;
     position: absolute;
     top: 22px;
     left: 20px;
     transform: rotate(45deg);
     border-radius: 2px;
 }



 .menu-toggle {
     width: 34px;
     height: 34px;
     background: #f3f4f6;
     border: none;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 6px;
     padding: 6px;
     cursor: pointer;
 }

 .menu-toggle span {
     width: 100%;
     height: 100%;
     background: #000;
     border-radius: 10px;
 }

 /* OVERLAY */
 .mobile-menu-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.45);
     display: none;
     z-index: 99999;
 }

 .mobile-menu-overlay.active {
     display: block;
 }

 /* FLOATING CARD */
 .mobile-menu {
     position: absolute;
     top: 20px;
     left: 20px;
     width: 90%;
     height: calc(100% - 40px);
     background: #fff;
     border-radius: 18px;
     display: flex;
     flex-direction: column;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
     padding: 24px;
 }

 /* HEADER */
 .mobile-menu-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 14px 0;
     border-bottom: 1px solid #e4daff;
 }

 .mobile-menu-header h4 {
     font-size: 16px;
     font-weight: 600;
     margin: 0;
     color: rgba(66, 66, 66, 0.80);
 }

 #menuClose {
     border: none;
     background: none;
     font-size: 22px;
     cursor: pointer;
 }

 .close-btn {
     width: 32px;
     height: 32px;
     background: transparent;
     border: none;
     position: relative;
     cursor: pointer;
 }

 /* line 1 */
 .close-btn::before,
 .close-btn::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     width: 26px;
     height: 6px;
     background: #666;
     border-radius: 2px;
 }

 /* rotate */
 .close-btn::before {
     transform: translate(-50%, -50%) rotate(45deg);
 }

 .close-btn::after {
     transform: translate(-50%, -50%) rotate(-45deg);
 }


 /* MENU LIST */
 .mobile-menu-list {
     flex: 1;
     overflow-y: auto;
     padding: 0;
     margin: 0;
     list-style: none;
 }

 .mobile-menu-list>li {
     position: relative;
     border-bottom: 1px solid #e4daff;
 }

 .mobile-menu-list>li>a {
     display: block;
     padding: 14px 42px 14px 16px;
     font-weight: 600;
     color: #111;
     text-decoration: none;
 }

 /* ARROW */
 .mobile-menu-list li.menu-item-has-children>a::after {
     content: "›";
     position: absolute;
     right: 16px;
     top: 50%;
     transform: translateY(-50%);
     font-size: 20px;
     transition: 0.3s;
 }

 /* OPEN */
 .mobile-menu-list li.open>a::after {
     transform: translateY(-50%) rotate(90deg);
     color: #564287;
 }

 /* SUBMENU */
 .mobile-menu-list .sub-menu {
     display: none;
 }

 .mobile-menu-list .sub-menu li a {
     padding: 12px 16px 12px 30px;
     font-size: 14px;
     border-top: 1px solid #f9f0cc;
     color: #555;
 }

 /* SOCIAL */
 .mobile-menu-social {
     padding: 14px;
     border-top: 1px solid #eee;
     text-align: center;
 }

 .mobile-menu-social p {
     font-size: 12px;
     color: #777;
     margin-bottom: 10px;
 }

 .mobile-menu-social a {
     margin: 0 8px;
     font-size: 18px;
     color: #6b4e16;
 }

 /* OVERLAY */
 .mobile-search-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, .45);
     display: none;
     z-index: 9999;
 }

 .mobile-search-overlay.active {
     display: block;
 }

 /* Search box */
 .mobile-search-box {
     width: 300px;
     height: 100%;
     background: #fff;
     position: absolute;
     right: 0;
     top: 0;
     border-radius: 16px 0 0 16px;
     display: flex;
     flex-direction: column;
 }

 /* Header */
 .mobile-search-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 14px 8px;
     border-bottom: 1px solid #eee;
 }

 .mobile-search-header h4 {
     font-size: 16px;
     font-weight: 700;
 }

 .mobile-search-header button {
     background: #f3f4f6;
     border: none;
     width: 32px;
     height: 32px;
     border-radius: 8px;
     font-size: 18px;
     cursor: pointer;
     padding: 10px;
 }

 /* Content */
 .mobile-search-content {
     padding: 16px;
 }

 .mobile-search-content label {
     width: 100%;
 }

 /* Search input */
 .mobile-search-content input[type="search"] {
     width: 100%;
     padding: 12px 16px;
     border-radius: 999px;
     border: 1px solid #e5e7eb;
     font-size: 14px;
 }

 .mobile-search-content .search-submit {
     height: 40px;
     /* padding: 0 28px; */
     border-radius: 12px;
     border: none;
     cursor: pointer;
     font-size: 16px;
     font-weight: 600;
     color: #ffffff;
     background: linear-gradient(135deg, #7864a9, #2f244a);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     margin: 10px 1px;
     width: 100%;
 }

 /* Hide desktop search inside header */


 /* GT Translate */
 .header-language {
     margin-right: 12px;
     display: flex;
     align-items: center;
 }

 .mobile-lang {
     margin-bottom: 12px;
 }

 /* GTranslate fix */
 .header-lang {
     position: relative;
     display: flex;
     align-items: center;
 }

 /* Prevent header height jump */
 .site-header {
     align-items: center;
 }

 /* GTranslate dropdown overlay */
 .header-lang .gt_container,
 .header-lang .gt_float_switcher {
     position: absolute !important;
     top: 100%;
     right: 0;
     z-index: 9999;
 }

 /* Keep header stable */
 .header,
 .site-header {
     overflow: visible;
 }

 /* ================= TICKER – REF UI ================= */

 .ticker {
     background: #ffffff;
     padding: 10px 0;
     overflow: hidden;
     width: 100%;
 }

 .ticker-track {
     display: flex;
     gap: 10px;
     width: max-content;
     animation: scroll 70s linear infinite;
 }

 /* CARD */
 .ticker-card {

     position: relative;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 6px 10px;
     background: #f5f5f5;
     -webkit-backdrop-filter: blur(8px);
     border-radius: 999px;
     min-width: 160px;
     width: fit-content;
     white-space: nowrap;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
 }

 /* ICON */
 .coin-icon {
     width: 22px;
     height: 22px;
     border-radius: 50%;
     flex-shrink: 0;
 }

 /* TEXT */
 .ticker-wrapper {
     display: flex;
     flex-direction: column;
     line-height: 1.2;
 }

 .ticker-symbol-name {
     font-size: 12px;
     color: #6b7280;
     font-weight: 500;
 }

 .ticker-symbol-name small {
     margin-left: 4px;
 }

 .ticker-price {
     font-size: 14px;
     font-weight: 700;
     color: #111827;
 }

 /* CHANGE BADGE */
 .ticker-change {
     position: absolute;
     top: -6px;
     right: -10px;
     font-size: 11px;
     font-weight: 600;
     padding: 2px 6px;
     border-radius: 999px;
     line-height: 1;
 }

 .ticker-change.up {
     background: rgba(204, 255, 233, 0.25);
     color: #00b894;

 }

 .ticker-change.down {
     background: rgba(255, 0, 76, 0.18);
     color: #ff004c;


 }


 /* =========================
   GLOBAL
========================= */


 .container {
     max-width: 1280px;
     margin: auto;
     padding: 0 16px;
 }

 a {
     text-decoration: none;
     color: inherit;

 }

 img {
     max-width: 100%;
     display: block;
 }

 /* =========================
   SECTION 1 – TOP NEWS
========================= */

 .top-news-secn {
     padding: 10px 0;
 }

 .heading-title {
     font-size: 24px;
     font-weight: 800;
     margin-bottom: 20px;
     font-family: "Chivo", sans-serif;
     color: rgb(66 66 66 / 80%);

 }

 .article-row {
     display: grid;
     grid-template-columns: 4fr 290px;
     gap: 30px;
     align-items: start;
 }

 /* MAIN GRID */
 .article-grid-6 {
     display: grid;
     grid-template-columns: repeat(12, 1fr);
     /* grid-template-columns: repeat(10, 1fr); */
     grid-template-rows: repeat(3, auto);
     /* ✅ FIX */
     gap: 16px 30px;
 }

 .article-grid-6 .news-card .caption-title a {
     font-size: 16px;
     line-height: 1.4;
     font-weight: 600;
     align-self: stretch;
     font-style: normal;
     color: #242424;
 }

 .article-grid-6 .news-card:nth-of-type(1) .caption-title a {
     font-size: 28px;
     line-height: 1.25;
     font-weight: 700;
     color: #242424;
     font-style: normal;
     align-self: stretch;
 }

 .news-card.rest-article img {
     height: 123px;
     object-fit: cover;
 }

 /* Tablet */
 @media (max-width: 1024px) {
     .news-card.rest-article img {
         height: 110px;
     }
 }

 /* Mobile */
 @media (max-width: 767px) {
     .news-card.rest-article img {
         height: 90px;
     }
 }

 .rest-article {
     opacity: 0.85;
     transform: scale(0.98);
 }

 .cd-post-time .post-author {
     /*   display: none;*/
 }

 .post-author {
     text-decoration: none;
     line-height: 1.4;
     color: #574387;
 }

 @media (max-width: 767px) {

     .cd-post-time {
         font-size: 12px;
         color: #777;
     }

     .cd-post-time .post-author {
         display: inline;
         /* margin-left: 6px; */
     }

     /*.cd-post-time .post-author::before {
         content: ",";
         /* margin-right: 6px; 
         color: #000;
     }
*/
     .cd-post-time .post-author a {
         color: #574387;
         font-weight: 500;
         text-decoration: none;
     }

     .cd-post-time .post-author a:hover {
         text-decoration: underline;
     }
 }





 @media (max-width: 991px) {

     .article-grid-6 .news-card:nth-of-type(1) .caption-title a {
         font-size: 22px;
         align-self: stretch;
         font-style: normal;
         color: #242424;
     }

     .article-grid-6 .news-card .caption-title a {
         font-size: 14px;
         align-self: stretch;
         font-style: normal;
         color: #242424;
     }
 }


 /* ===== DESKTOP LAYOUT ===== */
 /* ===== CARD STYLE ===== */
 .news-card {
     background: #F5F5F5;
     border-radius: 14px;
     overflow: hidden;
     transition: .25s;
     height: 100%;
     /* ✅ FIX */
     display: flex;
     flex-direction: column;
 }

 .thumb-16x9 {
     width: 100%;
     /*    aspect-ratio: 16/9;*/
     overflow: hidden;
 }

 .thumb-16x9 img {
     width: 100%;
     height: 100%;
     object-fit: fill;
 }

 .news-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
 }

 .news-card-content {
     padding: 14px;
 }


 .cd-post-time {
     font-size: 13px;
     color: #777;
     margin-top: 6px;
 }

 /* ===== SIDEBAR ===== */
 .latest-news {
     /* color: rgba(66, 66, 66, 0.80); */
     margin-top: -40px;
     overflow: visible;
 }

 .news {
     background: linear-gradient(135deg, #050816 0%, #191970 40%, #5b21b6 100%);
     border-radius: 16px;
     padding: 18px;
     color: #fff;
     margin-top: 10px;


 }

 .latest-news ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .latest-news-list {
     padding: 12px 0;
     border-bottom: 1px solid #eee;
     overflow: hidden;
     transition: .3s;
 }

 .latest-news li:hover {
     transform: translateY(-5px);
     box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
 }

 /* Hover underline under title */
 .latest-news-list a {
     text-decoration: none;
     border-bottom: 1px solid transparent;
     padding-bottom: 2px;
 }

 .latest-news-list .news-title a {
     color: #ffffff;
     font-size: 14px;
     font-style: normal;
     font-weight: 400;
     line-height: 24px;
     align-self: stretch;
 }

 .latest-news-list:hover a {
     border-bottom-color: #564287;
 }

 .latest-news-list:last-child {
     border-bottom: none;
 }

 .post-dispatch-time {
     font-size: 12px;
     color: #2ecc71;
     padding-top: 10px;
 }

 /* =========================
   SECTION 2 – TRUST
========================= */
 .trust-secn {
     margin: 10px 0;
     background: #fff;
     border-radius: 18px;
 }

 .trust-counter {
     display: grid;
     /* grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); */
     grid-template-columns: repeat(5, 1fr);
     align-items: center;
     gap: 24px;
     border-top: 8px solid #f0f0f0;
     padding-top: 24px;
 }

 .counter-block {
     /* background: #f7f8fa; */
     border-radius: 14px;
     padding: 20px;
     text-align: center;
 }

 .counter-title {
     color: #242424;
     text-align: center;
     font-family: "Chivo", sans-serif;
     font-size: 32px;
     font-style: normal;
     font-weight: 700;
     line-height: 40px;
     letter-spacing: -0.64px;
     /* text-transform: capitalize; */
     word-break: break-word;
     display: block;
 }

 .counter-sub-title {
     font-size: 14px;
     color: #424242cc;
     font-weight: 400;
     line-height: 20px;
 }

 .trust-centered-graphic {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
 }

 .trust-centered-graphic img {
     max-width: 160px;
 }

 .graphic-text {
     margin-top: 20px;
     text-align: center;
     font-size: 18px;
     font-weight: 700;
     color: #242424;
 }

 /* =========================
   SECTION 3 – BITCOIN NEWS
========================= */

 .common-news-head {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .secn-title {
     font-size: 22px;
     font-weight: 800;

 }

 .show-more-link {
     color: #564287;
     font-weight: 600;
 }

 .coin-post-articles {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
 }

 .coin-post-articles .news-card:nth-of-type(1) {
     grid-column: span 2;
     grid-row: span 2;
 }

 .coin-post-articles .news-card:nth-of-type(1) .news-card-content {
     padding: 24px;
 }

 .coin-post-articles .news-card:nth-of-type(2),
 .coin-post-articles .news-card:nth-of-type(3),
 .coin-post-articles .news-card:nth-of-type(4) {
     grid-column: span 1;
     grid-row: span 1;
     /* Normal cards */
 }

 .news-card .caption-title a {
     font-size: 16px;
     line-height: 1.4;
     font-weight: 600;
 }

 .coin-post-articles .news-card:nth-of-type(1) .caption-title a {
     font-size: 28px;
     line-height: 1.25;
     font-weight: 700;
 }

 @media (max-width: 991px) {

     .coin-post-articles .news-card:nth-of-type(1) .caption-title a {
         font-size: 22px;
     }

     .news-card .caption-title a {
         font-size: 14px;
     }
 }

 /* limit lines for small cards */
 .coin-post-articles .news-card:not(:first-child) .caption-title a {
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }


 /* =========================
   RESPONSIVE
========================= */

 /* =========================
   SECTION 4 – POPULAR GUIDES
========================= */
 .popular-guide-secn {
     padding: 40px 0;
 }

 .guides-wrapper {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 22px;
 }

 .guide-card {
     background: #fff;
     border-radius: 16px;
     overflow: hidden;
     transition: .3s;
 }

 .guide-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
 }

 .guide-card img {
     width: 100%;
     height: 180px;
     object-fit: cover;
 }

 .guide-content {
     padding: 16px;
 }

 .guide-content h3 {
     font-size: 16px;
     font-weight: 700;
     line-height: 1.35;
     margin-bottom: 12px;
     font-weight: 600;
 }

 .guide-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 10px 0px 10px 0px;
 }

 .guide-meta a {
     font-size: 14px;
     font-weight: 600;
     color: #564287;
 }

 .guide-meta span {
     font-size: 13px;
     color: #777;
 }

 /* RESPONSIVE */


 /* =========================
   SECTION 5 – TRENDING
========================= */
 /* Section spacing */
 .secn-spacing {
     margin: 50px 0;
 }

 /* Header */
 .social-header.mt-4 {
     padding: 10px;
 }

 .common-news-head {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .secn-title {
     font-size: 22px;
     font-weight: 700;
 }

 /* Show more */
 .show-more-link {
     font-size: 14px;
     font-weight: 600;
     color: #564287;
     text-decoration: none;
 }

 .show-more-link:hover {
     text-decoration: underline;
 }

 /* Grid */
 .news-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
 }

 .news-grid .news-card:nth-of-type(1) {
     grid-column: span 2;
     grid-row: span 2;
 }

 .news-grid .news-card:nth-of-type(1) .news-card-content {
     padding: 24px;
 }

 .news-grid .news-card:nth-of-type(2),
 .news-grid .news-card:nth-of-type(3),
 .news-grid .news-card:nth-of-type(4) {
     grid-column: span 1;
     grid-row: span 1;
     /* Normal cards */
 }


 .news-grid .caption-title a {
     font-size: 16px;
     line-height: 1.4;
     font-weight: 600;
 }

 .news-grid .news-card:nth-of-type(1) .caption-title a {
     font-size: 28px;
     line-height: 1.25;
     font-weight: 700;
 }

 @media (max-width: 991px) {

     .news-grid .news-card:nth-of-type(1) .caption-title a {
         font-size: 22px;
     }

     .news-card .caption-title a {
         font-size: 14px;
     }
 }

 /* limit lines for small cards */
 .news-grid .news-card:not(:first-child) .caption-title a {
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }




 /* Card */
 .news-card {

     border-radius: 16px;
     overflow: hidden;
     transition: .3s ease;
 }

 .news-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
 }

 .news-img img {
     width: 100%;
     /* height: 180px; */
     object-fit: cover;
 }

 .news-content {
     padding: 24px;
 }

 .news-content h3 {
     font-size: 15px;
     line-height: 1.4;
     margin-bottom: 10px;
     font-weight: 600;
 }

 .news-content a {
     /* color: #111; */
     text-decoration: none;
     /*font-weight: 600;*/
     line-height: 1.4;

 }

 .news-content h3 a:hover {
     color: #564287;
 }

 .news-meta {
     font-size: 12px;
     color: #777;
 }

 .news-meta a {
     color: #555;
     font-weight: 600;
 }

 /* Responsive */
 .desktop-only {
     display: inline-block;
 }

 .mobile-only {
     display: none;
 }

 /* =========================
        SECTION 6 – PRE-SALES
    ========================= */
 /* ================= RESET ================= */
 .crypto-box-list ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .crypto-box-list li {
     border-bottom: 1px solid #e5e5e5;
 }

 .crypto-box-list li:last-child {
     border-bottom: none;
 }

 /* ================= ITEM ROW ================= */
 .crypto-box-list li a {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 0;
     text-decoration: none;
     color: inherit;
 }

 .coin-link {
     display: flex;
     align-items: center;
     justify-content: space-between;
     cursor: pointer;
     padding-top: 15px;
     padding-bottom: 15px;
 }

 .coin-link:hover {
     background: inherit;
 }



 /* ================= LEFT BLOCK ================= */
 .coin-info-detail {
     display: flex;
     align-items: center;
     gap: 12px;
     flex: 1;
     min-width: 0;
 }

 /* ================= IMAGE FIX (MAIN ISSUE) ================= */
 .coin-img {
     width: 40px;
     height: 40px;
     flex-shrink: 0;
 }

 .coin-img img {
     width: 40px;
     height: 40px;
     object-fit: cover;
     border-radius: 50%;
 }

 /* ================= TEXT ================= */
 .coin-info {
     display: flex;
     flex-direction: column;
     gap: 2px;
 }

 .coin-name {
     font-size: 14px;
     font-weight: 700;
     color: #fff;
     line-height: 1.2;
 }

 .coin-name small {
     /* display: block; */
     font-size: 12px;
     font-weight: 500;
     color: #bdbdbd;
 }

 /* ================= PRICE ================= */
 .coin-price {
     font-size: 14px;
     font-weight: 600;
     color: #fff;
 }

 .coin-rating {
     color: #ffac33;
     font-size: 14px;
     font-weight: 600;
 }

 /* ================= RIGHT SIDE % ================= */
 .coin-change {
     font-size: 13px;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 999px;
     white-space: nowrap;
     flex-shrink: 0;
 }

 .coin-change.up {
     background: #e7f9ef;
     color: #16a34a;
 }

 .coin-change.down {
     background: #fde8ec;
     color: #e11d48;
 }

 /* ================= TOP CHOICE ================= */
 .choice-option.top-choice {
     margin-left: auto;
     background: #2563eb;
     color: #fff;
     font-size: 11px;
     padding: 4px 10px;
     border-radius: 999px;
     white-space: nowrap;
 }

 /* ================= CARD ================= */
 .crypto-box .crypto-box-list {
     background: linear-gradient(135deg, #050816 0%, #191970 40%, #5b21b6 100%);
     border-radius: 24px;
     padding: 12px 16px;
 }

 /* ================= 3 COLUMN ================= */
 .three-col-row {
     display: flex;
     gap: 30px;
 }

 .three-col-row>* {
     flex: 0 0 calc(33.333% - 20px);
 }

 /* =========================
   TOP PRESALES – FIX TOP CHOICE
========================= */

 /* Make row relative */
 .crypto-box-presale .crypto-box-list li a {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 0;
     /*     border-bottom: 1px solid #e6e9ef;*/
 }

 .crypto-box-presale .crypto-box-list li a:hover {
     border: none !important;
     outline: none !important;
     box-shadow: none !important;
 }

 .crypto-box-presale .coin-info-detail {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 /* TOP Choice badge */
 .crypto-box-presale .choice-option.top-choice {
     display: inline-flex !important;
     align-items: center;
     justify-content: center;
     margin-left: auto;
     /* 🔥 THIS IS THE KEY */
     background: #2ecc71;
     color: #000000;
     font-size: 11px;
     font-weight: 700;
     padding: 5px 10px;
     border-radius: 999px;
     white-space: nowrap;
     flex-shrink: 0;
     z-index: 2;
 }

 /* Arrow icon (if any) */
 .crypto-box-presale .coin-arrow {
     margin-left: 8px;
     color: #9aa0a6;
 }

 .crypto-box-presale li:first-child .choice-option {
     display: inline-flex;
 }

 /* ===== ADD ARROW ===== */
 /* .crypto-box-list li a::after {
     content: "›";
     font-size: 18px;
     color: #9aa0a6;
     margin-left: 12px;
     flex-shrink: 0;
 }*/

 /* ===== HOVER YELLOW UNDERLINE ===== */
 .crypto-box-list li a {
     position: relative;
 }

 /*.crypto-box-list li a::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: -1px;
     width: 0;
     height: 1px;
     background: #564287;
     transition: width 0.25s ease;
 }*/

 /* .crypto-box-list li a:hover::before {
     width: 100%;
 }*/

 /* ===== MOBILE COMPACT BADGE ===== */
 @media (max-width: 767px) {

     .crypto-box-presale .choice-option.top-choice {
         font-size: 10px;
         padding: 4px 8px;
     }

     /* reduce row height on mobile */
     .crypto-box-list li a {
         padding: 12px 0;
     }
 }


 /* ================= MOBILE ================= */
 @media (max-width: 1024px) {
     .three-col-row {
         flex-direction: column;
     }

     .three-col-row>* {
         flex: 0 0 100%;
     }
 }


 /* =========================
   SECTION 7 – Editors' Choice
========================= */

 .cats-tab-con {
     display: flex;
     gap: 32px;
     align-items: center;
     margin-bottom: 10px;
     overflow-x: auto;
     scrollbar-width: none;
 }

 .cats-tab-con::-webkit-scrollbar {
     display: none;
 }

 /* =========================
   TAB ITEM
========================= */
 .cats-tab-con .cat-tab {
     position: relative;
     /* color: rgba(66, 66, 66, 0.80); */
     font-size: 18px;
     font-weight: 600;
     line-height: 32px;
     cursor: pointer;
     white-space: nowrap;
     padding-bottom: 6px;
     transition: color 0.25s ease;
 }

 /* =========================
   UNDERLINE (HOVER + ACTIVE)
========================= */
 .cats-tab-con .cat-tab::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 0;
     height: 2px;
     background: #564287;
     transition: width 0.25s ease;
 }

 /* Hover underline */
 .cats-tab-con .cat-tab:hover::after {
     width: 100%;
 }

 /* Active underline */
 .cats-tab-con .cat-tab.active::after {
     width: 100%;
 }

 /* Active text color */
 .cats-tab-con .cat-tab.active {
     color: #242424;
 }

 .secn-title {
     font-weight: 700;
     font-size: 24px;
     margin-bottom: 15px;
     color: #242424;
     line-height: 32px;
     /* font-family: "Chivo", sans-serif; */
     font-style: normal;
 }

 /* Tabs content */
 .tab-content {
     display: none;
     animation: fadeIn 0.3s ease-in-out;
 }

 .tab-content.active {
     display: block;
 }

 /* Cards */
 .common-post-articles {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     grid-auto-rows: auto;
     gap: 20px;
 }

 .news-card {

     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     display: flex;
     flex-direction: column;
 }

 .news-card-img img {
     width: 100%;
     height: 355px;
     object-fit: cover;
 }

 .news-card-content {
     padding: 16px;
 }

 .caption-title a {
     /* font-weight: 600;
     color: #222;
     text-decoration: none;
     line-height: 1.4; */

     color: #242424;
     font-size: 14px;
     font-style: normal;
     font-weight: 600;
     line-height: 24px;
     align-self: stretch;
 }

 .cd-post-time {
     font-size: 12px;
     color: #777;
     margin-top: 6px;
 }

 /* Featured card (1st item bigger) */

 /* BIG FEATURED POST */
 .common-post-articles .news-card:nth-child(1) {
     grid-column: 1 / 2;
     grid-row: 1 / 3;
 }

 /* Small cards (right side) */
 .common-post-articles .news-card:nth-child(2) {
     grid-column: 2 / 3;
     grid-row: 1;
 }

 .common-post-articles .news-card:nth-child(3) {
     grid-column: 3 / 4;
     grid-row: 1;
 }

 .common-post-articles .news-card:nth-child(4) {
     grid-column: 2 / 3;
     grid-row: 2;
 }

 .common-post-articles .news-card:nth-child(5) {
     grid-column: 3 / 4;
     grid-row: 2;
 }


 .common-post-articles .news-card:nth-child(1) .news-card-content {
     padding: 24px;
 }


 /* Big post title */
 .common-post-articles .news-card:nth-child(1) .caption-title a {
     font-size: 26px;
     line-height: 1.25;
     font-weight: 700;
 }

 /* Small post titles */
 .common-post-articles .news-card:not(:first-child) .caption-title a {
     font-size: 14px;
     line-height: 1.4;
     font-weight: 600;
 }

 /* ===== MOBILE: REMOVE GRID LAYOUT ===== */
 @media (max-width: 991px) {

     .common-post-articles {
         display: block;
         /* grid remove */
     }

     .common-post-articles .news-card {
         width: 100%;
         margin-bottom: 10px;
     }

     /* reset desktop grid overrides */
     .common-post-articles .news-card:nth-child(1),
     .common-post-articles .news-card:nth-child(2),
     .common-post-articles .news-card:nth-child(3),
     .common-post-articles .news-card:nth-child(4),
     .common-post-articles .news-card:nth-child(5) {
         grid-column: unset;
         grid-row: unset;
     }
 }

 /* Responsive */
 .news-grid .caption-title a {
     font-size: 16px;
     line-height: 1.4;
     font-weight: 600;
 }

 .common-post-articles .news-card:nth-of-type(1) .caption-title a {
     font-size: 28px;
     line-height: 1.25;
     font-weight: 700;
 }

 @media (max-width: 991px) {

     .common-post-articles .news-card:nth-of-type(1) .caption-title a {
         font-size: 22px;
     }

     .news-card .caption-title a {
         font-size: 14px;
     }
 }

 /* limit lines for small cards */
 .common-post-articles .news-card:not(:first-child) .caption-title a {
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 /* =========================
        SECTION 8 – NEWSLETTER
 ========================= */


 .newsletter-outer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     padding: 50px;
     border-radius: 20px;
     /* background: rgba(255, 255, 255, 0.06); */
     background: linear-gradient(135deg, #050816 0%, #191970 40%, #5b21b6 100%);
     backdrop-filter: blur(12px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
 }


 .newsletter-box {
     max-width: 520px;
     color: #ffffff;
 }

 .newsletter-title {
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .newsletter-outer {
     position: relative;
 }

 .newsletter-floating-logo {
     position: absolute;
     right: 5%;
     top: 50%;
     transform: translateY(-50%);
     width: 380px;
     opacity: 0.95;
     pointer-events: none;
     animation: floatUpDown 4s ease-in-out infinite;
 }

 .newsletter-floating-logo img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* Floating Animation */
 @keyframes floatUpDown {
     0% {
         transform: translateY(-50%) translateY(0px);
     }

     50% {
         transform: translateY(-50%) translateY(-15px);
     }

     100% {
         transform: translateY(-50%) translateY(0px);
     }
 }

 /* MOBILE FIX */


 @media (max-width: 767px) {
     .newsletter-floating-logo {
         position: absolute;
         top: 11px;
         right: 0px;
         width: 155px;
         animation: none;
         transform: none;
         z-index: 3;
     }


     .contact-form-section {
         position: relative;
     }

     .newsletter-outer {
         padding: 24px;

     }


 }


 /* =========================
   FORM
========================= */

 .newsletter-form {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .input-wrap {
     flex: 1;
 }

 .input-wrap input {
     width: 100%;
     height: 52px;
     padding: 0 18px;
     border-radius: 12px;
     border: none;
     font-size: 15px;
     outline: none;
     background: #ffffff;
 }

 .newsletter-submit {
     height: 52px;
     padding: 0 28px;
     border-radius: 12px;
     border: none;
     cursor: pointer;
     font-size: 15px;
     font-weight: 600;
     color: #ffffff;
     background: linear-gradient(135deg, #3b82f6, #2563eb);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .newsletter-submit:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
 }

 /* =========================
   GRAPHIC
========================= */

 .newsletter-graphic img {
     max-width: 320px;
     width: 100%;
     animation: float 4s ease-in-out infinite;
 }

 /* =========================
   ANIMATION
========================= */

 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0);
     }
 }

 /* =========================
   RESPONSIVE
========================= */



 /* =========================
   FOOTER
========================= */

 .site-footer {
     background: linear-gradient(180deg, #ffffff, #ffffff);
     color: #cbd5f5;
     padding: 70px 0 25px;
     font-size: 14px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr;
     gap: 50px;
     margin-bottom: 5px;
 }

 /* Desktop */
 .footer-brand {
     order: 1;
 }

 .footer-links {
     order: 2;
 }

 /* ===== DESKTOP (default) ===== */
 .footer-links ul {
     display: block;
 }

 .toggle-arrow {
     display: none;
     /* hide arrow on desktop */
 }

 .footer-title-icon {
     display: none;
 }
.dmca-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .dmca-badge {
        padding: 15px 0;
    }

    .dmca-badge img {
        max-width: 160px;   /* control size on mobile */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .dmca-badge img {
        max-width: 130px;
    }
}

 /* ===== MOBILE ===== */
 @media (max-width: 768px) {

     .footer-toggle {
         display: flex;
         align-items: center;
         justify-content: space-between;
         /* pushes arrow right */
     }

     .footer-title-icon {
         display: block;
         /* removes inline gap */
         margin-right: 6px;
         width: 24px;
         /* increase from 18 */
         height: 24px;
         object-fit: contain;
     }

     .toggle-arrow {
         display: inline-block;
         width: 10px;
         height: 10px;
         border-right: 2px solid #9ca3af;
         border-bottom: 2px solid #9ca3af;
         transform: rotate(45deg);
         transition: transform 0.25s ease;
         margin-left: auto;
     }

     .footer-links ul {
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease;
     }

     .footer-links.active ul {
         max-height: 500px;
     }

     .footer-links.active .toggle-arrow {
         transform: rotate(-135deg);
     }
 }


 /* Mobile */
 @media (max-width: 768px) {
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .footer-links {
         order: 1;
     }

     .footer-brand {
         order: 3;
     }

     .ra-time,
     .ra-read,
     .post-author {
         font-size: 11px;
     }

 }

 /* =========================
   BRAND
========================= */

 .footer-logo img {
     max-width: 200px;
     /* margin-bottom: 20px; */
     margin-left: -18px;
     padding: 0px;
 }

 .footer-desc {
     line-height: 1.7;
     margin-bottom: 20px;
     color: rgb(66 66 66 / 80%);
     font-size: 16px;
 }

 .footer-social {
     display: flex;
     gap: 14px;
     padding: 0;
     list-style: none;
 }

 .footer-social a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.08);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     font-size: 16px;
     transition: all 0.25s ease;
 }

 .footer-social a:hover {
     background: #3b82f6;
     transform: translateY(-3px);
 }

 /* =========================
   LINKS
========================= */
 @media (max-width: 768px) {

     .footer-links h4 {
         padding: 18px 14px;
         background: #f5f5f5;
         border-radius: 14px;
     }

     .footer-links li {
         position: relative;
         padding-left: 28px;
         margin-bottom: 10px;
         font-size: 15.5px;
         line-height: 1.65;
         color: #2b2f36;
         list-style: none;
     }

     .footer-links ul {
         padding: 6px 27px !important;
     }

     .footer-links li::before {
         content: "•";
         position: absolute;
         left: 0;
         top: -5px;
         font-size: 33px;
         line-height: 1;
         color: #564189;

     }
 }

 .footer-links h4 {
     font-size: 16px;
     margin-bottom: 16px;
     color: #000000;
     font-weight: 700;
 }

 .footer-links ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: #000000;
     text-decoration: none;
     transition: color 0.2s ease;
 }

 .footer-links a:hover {
     color: #000000;
 }

 /* =========================
   BOTTOM
========================= */

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     text-align: center;
     color: #64748b;
     font-size: 13px;
 }

 /* =========================
   RESPONSIVE
========================= */


 /* SIngle Post Deatils Page */

 /* Artical deatils */
 .cd-article-page {
     background: #fff;
     /* padding: 20px 0; */
     font-family: "Chivo", sans-serif;
 }



 .cd-layout {
     display: grid;
     grid-template-columns: 1fr 420px;
     gap: 32px;
 }

 .cd-article {
     background: #fff;
     /* padding: 32px; */
     border-radius: 20px;
 }

 .cd-title {
     font-size: 32px;
     line-height: 1.3;
     margin: 20px 0;
     font-family: "Chivo", system-ui, -apple-system, sans-serif;
     font-weight: 700;
     color: #242424;
 }

 .cd-hero img {
     width: 100%;
     border-radius: 20px;
     /* background: #0a9bdc; */
     padding: 40px;
 }

 .cd-content h2 {
     margin: 28px 0 12px;
     font-size: 20px;
     font-weight: 700;
     font-family: "Family", serif;
     font-size: 1.6rem;
 }

 .cd-content h3 {
     margin: 28px 0 12px;
     font-size: 18px;
     font-weight: 700;
     font-family: "Family", serif;
     font-size: 1.6rem;
 }

 .cd-content {

     padding-top: 20px;

 }

 .cd-content p,
 .cd-content-body p,
 .cd-content-body em {
     font-family: "Family", serif;
     font-size: 1.375rem;
     line-height: 30px;
     margin-bottom: 2rem;

     color: #242424;

 }

 .cd-content strong,
 .cd-content-body strong {
     font-family: "Family", serif;
     font-size: 1.375rem;
 }

 @media (max-width: 768px) {

     .cd-content p,
     .cd-content-body p,
     .cd-content-body em {
         letter-spacing: 0;
         font-size: 1.25rem;
         line-height: 28px;
     }

     .cd-content strong,
     .cd-content-body strong {
         font-size: 1.25rem;
     }
 }

 .cd-content ul,
 .cd-content ol {

     padding: 27px;
     margin: 0 auto;

 }

 .cd-content li {
     position: relative;
     padding-left: 28px;
     margin-bottom: 16px;
     font-family: "Family", serif;
     font-size: 1.375rem;
     line-height: 1.65;
     color: #2b2f36;
     list-style: none;

 }

 .cd-content li::before {
     content: "";
     width: 8px;
     height: 8px;
     background: #000;
     border-radius: 50%;
     position: absolute;
     left: 0;
     top: 8px;
     color: #564189;

 }

 .cd-reactions,
 .cd-share {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 16px;
     border: 1px solid #eee;
     border-radius: 14px;
     margin-top: 24px;
 }

 .reaction-icons {
     display: flex;
     gap: 25px;
 }

 .share-icons {
     display: flex;
     gap: 25px;
 }

 .cd-author {
     display: flex;
     gap: 16px;
     margin-top: 32px;
     background: #fafafa;
     padding: 20px;
     border-radius: 16px;
 }



 .cd-author img {
     width: 80px;
     height: 80px;
     border-radius: 50%;
 }

 .cd-comments input,
 .cd-comments textarea {
     width: 100%;
     padding: 12px;
     margin-bottom: 12px;
     border-radius: 10px;
     border: 1px solid #ddd;
 }

 .cd-comments button {
     background: #564287;
     border: none;
     padding: 12px 20px;
     border-radius: 10px;
     font-weight: 600;
 }

 .cd-related .related-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
 }

 .related-card {
     background: #f3f3f3;
     padding: 16px;
     border-radius: 14px;
 }

 .cd-join {
     background: #fff4cc;
     padding: 28px;
     border-radius: 20px;
     margin-top: 40px;
 }

 .join-box {
     display: flex;
     gap: 12px;
 }

 .join-box input {
     flex: 1;
     padding: 12px;
     border-radius: 10px;
     border: 1px solid #ccc;
 }

 .join-box button {
     background: #564287;
     border: none;
     padding: 12px 20px;
     border-radius: 10px;
     font-weight: 600;
 }

 .cd-sidebar .side-box {
     background: #fff;
     padding: 20px;
     border-radius: 18px;
     margin-bottom: 24px;
 }

 .cd-sidebar .stats .stat {
     font-weight: 600;
     margin: 10px 0;
 }


 /* ========== PAGE BASE ========== */
 /* ===============================
   BREADCRUMB
   =============================== */

 .breadcrumb-wrapper {
     margin: 5px 0;
 }

 .cd-breadcrumb {
     display: flex;
     align-items: center;
     /* flex-wrap: wrap; */
     gap: 6px;
     font-size: 14px;
     color: #666;
 }

 .cd-breadcrumb a {
     color: #111;
     text-decoration: none;
     font-weight: 500;
 }

 .cd-breadcrumb a:hover {
     /* text-decoration: underline; */
 }

 .breadcrumb-separator img {
     width: 14px;
     height: 14px;
     vertical-align: middle;
 }

 .breadcrumb-current {
     color: #999;
     font-weight: 400;
 }

 /* ===============================
   TABLET
   ================================ */
 @media (max-width: 1024px) {
     .cd-breadcrumb {
         font-size: 13px;
     }
 }

 /* ===============================
   MOBILE
 ================================ */
 @media (max-width: 600px) {
     .cd-breadcrumb {
         font-size: 12px;
         line-height: 1.4;
     }

     .breadcrumb-current {
         display: -webkit-box;
         -webkit-line-clamp: 1;
         -webkit-box-orient: vertical;
         overflow: hidden;
         max-width: 100%;
     }
 }

 .cd-page-article {
     background: #ffffff;
     padding: 24px;
 }

 .cd-page-content {
     text-align: justify;
 }

 .cd-page-header {
     margin-bottom: 20px;
 }

 .cd-breadcrumb {
     font-size: 13px;
     color: #777;
     margin-bottom: 8px;
 }

 .cd-breadcrumb a {
     color: #564287;
     text-decoration: none;
 }

 .cd-page-title {
     font-size: 34px;
     font-weight: 700;
     line-height: 1.35;
     color: #111;
 }

 /* ========== LAYOUT ========== */
 .cd-page-layout {
     display: grid;
     grid-template-columns: 1fr 420px;
     gap: 32px;
     align-items: start;
     padding-top: 20px;
 }

 /* ========== CONTENT ========== */
 .cd-featured-image img {
     width: 100%;
     border-radius: 12px;
     margin-bottom: 24px;
 }

 .cd-content-body {
     color: #222;
     font-family: "Family", serif;
 }

 .cd-content-body a {
     font-family: "Family", serif;
     font-size: 1.375rem;
 }

 ul.wp-block-list li {
     font-family: "Family", serif;
     font-size: 1.375rem;
     line-height: 30px;
     margin-bottom: 1rem;
     color: #242424;
 }

 @media (max-width: 768px) {
     ul.wp-block-list li {
         font-size: 1.25rem;
         line-height: 28px;
     }

     .cd-content-body a {

         font-size: 1.25rem;
     }
 }

 .cd-content-body h2,
 .cd-content-body h3 {
     /*      margin-top: 36px; */
     margin-bottom: 14px;
     font-weight: 700;
     font-family: "Family", serif;
     font-size: 1.6rem;
 }

 /* ========== SIDEBAR ========== */
 .cd-page-sidebar {
     position: sticky;
     top: 90px;
 }

 .cd-info-card,
 .cd-cta-card {
     background: #f7f8fb;
     border-radius: 14px;
     padding: 20px;
     margin-bottom: 24px;
 }

 .cd-info-card h4,
 .cd-cta-card h4 {
     font-size: 18px;
     margin-bottom: 12px;
 }

 .cd-info-card ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .cd-info-card li {
     font-size: 14px;
     margin-bottom: 6px;
 }

 .cd-btn {
     display: inline-block;
     background: #564287;
     color: #000;
     padding: 10px 18px;
     border-radius: 10px;
     font-weight: 600;
     text-decoration: none;
 }

 /* Desktop */



 /* mobile */


 /* Load More Button css */
 .load-more-wrap {
     text-align: center;
     margin-top: 30px;
 }

 #load-more-guides {
     background: #564287;
     border: none;
     padding: 12px 26px;
     border-radius: 10px;
     font-weight: 600;
     cursor: pointer;
 }

 /* =================================================
   ARCHIVE PAGE & CARD – FULL RESPONSIVE (CryptoDnes Style)
================================================= */

 .cd-author-box {
     display: flex;
     justify-content: space-between;
     gap: 24px;
     padding: 28px;
     border-radius: 16px;
     background: #fafafa;
     align-items: flex-start;
     margin-top: 20px;
 }

 .cd-author-content {
     max-width: 70%;
 }

 .author-header {
     display: flex;
     align-content: center;
     gap: 10px;
 }

 .author-name {
     font-size: 22px;
     font-weight: 700;
     /* margin-bottom: 6px; */
     color: #242424;
 }

 .author-left .author-name {
     font-size: 14px;
 }

 .author-social-icons {
     display: flex;
     gap: 7px;
     margin-bottom: 14px;
     /* margin-left: 17px; */
     justify-content: left;
     /* margin-top: -10px; */
 }

 .author-bio {
     font-size: 15px;
     line-height: 1.7;
     color: #555;
     margin-bottom: 16px;
     text-align: justify;
 }

 .author-meta {
     font-size: 14px;
     color: #777;
     margin-bottom: 10px;
     display: grid;
     margin-top: 5px;
     justify-content: space-around;
     align-content: center;
     gap: 5px;

 }

 .author-meta strong {
     color: #000;
 }

 .about-author-link {
     font-size: 14px;
     font-weight: 600;
     color: #000;
     border-bottom: 2px solid #564287;
     padding-bottom: 2px;
     display: inline-block;
 }

 .cd-author-avatar img {
     width: 100px;
     height: 100px;
     object-fit: cover;
     border-radius: 16px;
 }

 @media (max-width: 768px) {

     .cd-author-box {
         flex-direction: column;
         padding: 18px;
         gap: 14px;
     }

     /* AUTHOR IMAGE SHOULD COME FIRST */
     .cd-author-avatar {
         order: -1;
         /* 🔥 KEY FIX */
         display: flex;
         align-items: center;
         gap: 12px;
     }

     .cd-author-avatar img {
         width: 56px;
         height: 56px;
         border-radius: 12px;
         flex-shrink: 0;
     }

     .cd-author-content {
         max-width: 100%;
     }


     .author-meta {
         display: flex;
         gap: 8px;
         font-size: 13px;
         margin: 2px 0 6px;
     }

     .author-social-icons {
         margin: 6px 0 10px;
         gap: 12px;

     }

     .author-social-icons a {
         font-size: 14px;
     }

     .author-bio {
         font-size: 14px;
         line-height: 1.65;
         margin-bottom: 14px;
         text-align: inherit;
     }

     .about-author-link {
         display: inline-flex;
         align-items: center;
         gap: 6px;
         padding: 8px 14px;
         border-radius: 22px;
         border: 2px solid #564287;
         font-size: 13px;
         font-weight: 600;
         width: fit-content;
     }
 }

 .cd-archive-head {
     margin-bottom: 32px;
 }

 .author-card {
     display: flex;
     justify-content: space-between;
     gap: 30px;
     background: #ffffff;
     border: 1px solid #e5e7eb;
     border-radius: 18px;
     padding: 28px;
     align-items: center;
 }

 /* LEFT */
 .author-content {
     flex: 1;
 }


 .author-social {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 12px;
 }

 .author-badge {
     background: #564287;
     color: #fff;
     font-weight: 700;
     font-size: 14px;
     padding: 5px 8px;
     border-radius: 4px;
 }

 .author-x {
     font-size: 18px;
     color: #564287;
 }

 .author-desc {
     font-size: 14px;
     line-height: 1.6;
     color: #4b5563;
     max-width: 520px;
     padding-top: 10px;
 }

 /* RIGHT */
 .author-image {
     text-align: center;
 }

 .author-image img {
     width: 120px;
     height: 120px;
     border-radius: 12px;
     object-fit: cover;
 }

 .author-stats {
     margin-top: 8px;
     font-size: 13px;
 }

 .author-stats strong {
     display: block;
     font-weight: 700;
 }

 .author-stats span {
     color: #6b7280;
 }

 /* ===============================
   AUTHOR CARD – MOBILE REF UI
================================ */
 @media (max-width: 768px) {

     .author-card {
         flex-direction: column;
         align-items: flex-start;
         padding: 20px;
         gap: 16px;
     }

     /* TOP ROW: image + name */
     .author-image {
         display: flex;
         align-items: center;
         gap: 14px;
         width: 100%;
         text-align: left;
     }

     .author-image img {
         width: 64px;
         height: 64px;
         border-radius: 12px;
     }

     .author-stats {
         margin-top: 2px;
         font-size: 13px;
     }

     .author-stats strong {
         display: inline;
         font-weight: 700;
         color: #111827;
     }

     .author-stats span {
         display: inline;
         margin-left: 4px;
         color: #6b7280;
     }

     /* NAME */
     .author-header>.author-name {
         font-size: 22px;
         font-weight: 700;
         margin-bottom: 0px;
     }

     .hover-header-info>.author-name {
         font-size: 15px;
     }

     /* LEFT CONTENT FULL WIDTH */
     .author-content {
         width: 100%;
     }

     /* SOCIAL ICONS UNDER IMAGE */
     .author-social {
         margin-top: 6px;
         gap: 12px;
     }

     .author-badge {
         font-size: 13px;
         padding: 3px 6px;
     }

     .author-x {
         font-size: 18px;
     }

     /* BIO TEXT */
     .author-desc {
         font-size: 14px;
         line-height: 1.6;
         color: #4b5563;
         max-width: 100%;
         margin-top: 6px;
     }
 }


 /* -------- GLOBAL -------- */
 .cd-archive-page {
     background: #fff;
     padding: 10px 0;
 }

 .cd-section-title {
     font-size: 22px;
     margin: 32px 0 16px;
     font-weight: 600;
 }

 /* .cd-archive-head1 {
     border-radius: 16px;
     border: 1px solid #e3e3e3;
     padding: 10px;
 } */

 /* -------- LAYOUT -------- */
 .cd-archive-layout {
     display: grid;
     grid-template-columns: minmax(0, 1fr) 420px;
     gap: 32px;
 }

 /* -------- BREADCRUMB -------- */
 .cd-breadcrumb {
     font-size: 14px;
     color: #777;
     margin-bottom: 16px;
 }

 /* -------- HEADER BOX -------- */
 .cd-archive-head {
     background: #fff;
     /* padding: 24px; */
     border-radius: 20px;
     margin-bottom: 32px;
     display: flex;
     justify-content: space-between;
     align-items: unset;
     gap: 30px;
 }

 .cd-archive-head h1 {
     margin: 0;
     font-size: 32px;
     font-weight: 700;
 }

 .article-count {
     font-size: 14px;
     color: #888;
 }

 /* =================================================
   MOST POPULAR
================================================= */
 .cd-popular-grid {
     display: grid;
     /* grid-template-columns: 2fr 1fr; */
     grid-template-columns: repeat(10, 1fr);
     grid-template-rows: repeat(3, auto);
     gap: 24px;
 }



 .cd-popular-big img {
     width: 100%;
     border-radius: 18px;
 }

 .cd-popular-big h3,
 .cd-popular-big h5 {
     font-size: 22px;
     margin-top: 12px;
     font-weight: 600;
 }

 .cd-popular-list {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .cd-popular-small {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .cd-popular-small img {
     width: 80px;
     min-width: 80px;
     border-radius: 10px;
 }

 .popular-small a {
     font-weight: 600;
     color: #222;
     text-decoration: none;
     line-height: 1.4;
     font-size: 14px;
 }

 /* =================================================
   ALL ARTICLES GRID
================================================= */
 .cd-article-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
 }

 .cd-article-card {
     background: #f5f5f5;
     padding: 12px;
     border-radius: 16px;
     transition: transform .2s ease, box-shadow .2s ease;
 }

 .cd-article-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
 }

 .cd-article-card img {
     width: 100%;
     border-radius: 12px;
     margin-bottom: 10px;
 }

 .article-card a {
     font-weight: 600;
     color: #222;
     text-decoration: none;
     line-height: 1.4;
     font-size: 14px;
 }

 /* =================================================
   PAGINATION
================================================= */
 .cd-pagination {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 6px;
     margin: 40px 0;
     flex-wrap: wrap;
 }

 .cd-pagination .page-numbers {
     padding: 8px 14px;
     background: #fff;
     border-radius: 8px;
     font-weight: 600;
     transition: .2s ease;
 }

 .cd-pagination .page-numbers:hover {
     background: #564287;
     color: #fff;
 }

 .cd-pagination .current {
     background: #564287;
     color: #fff;
 }

 /* =================================================
   SIDEBAR
================================================= */

 /* Article Details */
 .cd-archive-sidebar {
     position: sticky;
     top: 90px;
     height: fit-content;
 }

 .cd-archive-sidebar .side-box {
     background: #fff;
     padding: 20px;
     border-radius: 18px;
     margin-bottom: 24px;
 }

 .cd-archive-sidebar {
     /* max-width: 400px; */
     font-family: "Chivo", sans-serif;
     background: #fff;
     /* padding: 20px; */
     /* flex: 0 0 418px;
     width: 418px; */
 }


 .collapse-box,
 .stats-card {
     border-radius: 16px;
     overflow: hidden;
     background: #f5f5f5;
     margin-bottom: 14px;
 }


 /* ===== DESKTOP ===== */
 .collapse-box-content {
     display: block;
 }

 .collapse-icon {
     /* display: none; */
 }

 /* Chevron container */
 .collapse-icon {
     display: inline-flex;
     /* IMPORTANT */
     align-items: center;
     justify-content: center;
     width: 18px;
     /* professional size */
     height: 18px;
     flex-shrink: 0;
 }

 /* Chevron drawing */
 .collapse-icon::before {
     content: "";
     width: 8px;
     height: 8px;
     border-right: 2px solid #6b7280;
     border-bottom: 2px solid #6b7280;
     transform: rotate(45deg);
     transition: transform 0.25s ease, border-color 0.2s ease;
 }

 /* Active state */
 .collapse-box.active .collapse-icon::before {
     transform: rotate(-135deg);
     border-color: #111827;
 }

 .about-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .about-header-left {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .about-icon {
     width: 30px;
     height: 30px;
     border-radius: 50%;
     object-fit: contain;
     background: #fff;
 }

 .about-title {
     font-size: 16px;
     font-weight: 700;
 }

 /* ===== MOBILE ===== */
 @media (max-width: 768px) {

     .collapse-box-header {
         display: flex;
         align-items: center;
         justify-content: space-between;
         gap: 12px;
         /* professional spacing */
         cursor: pointer;
         user-select: none;
         margin-top: -5px;
     }

     /* Chevron container */
     .collapse-icon {
         display: inline-flex;
         /* IMPORTANT */
         align-items: center;
         justify-content: center;
         width: 18px;
         /* professional size */
         height: 18px;
         flex-shrink: 0;
     }

     /* Chevron drawing */
     .collapse-icon::before {
         content: "";
         width: 8px;
         height: 8px;
         border-right: 2px solid #6b7280;
         border-bottom: 2px solid #6b7280;
         transform: rotate(45deg);
         transition: transform 0.25s ease, border-color 0.2s ease;
     }

     /* Active state */
     .collapse-box.active .collapse-icon::before {
         transform: rotate(-135deg);
         border-color: #111827;
     }

     /* Collapsible content */
     .collapse-box-content {
         /* max-height: 0; */
         /* overflow: hidden; */
         transition: max-height 0.35s ease;
     }

     .collapse-box.active .collapse-box-content {
         max-height: 800px;
         background: #f5f5f5;
         border-radius: 16px;
         /* height: 300px; */
     }
 }



 .collapse-box-header {
     padding: 16px;
     font-weight: 600;
     display: flex;
     justify-content: space-between;
     cursor: pointer;
     background: #f5f5f5;
 }

 .collapse-icon {
     width: 18px;
     height: 18px;
     position: relative;
 }


 .collapse-box-content {
     display: none;
     padding: 0 16px 16px;
     font-size: 14px;
     color: #555;
 }

 .stats-card {
     padding: 20px;
     text-align: center;
 }

 .stats-header img {
     width: 48px;
     margin-bottom: 8px;
 }

 .stats-header h4 span {
     color: #564287;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
     margin-top: 16px;
 }

 .stats-grid strong {
     font-size: 20px;
     display: block;
 }

 .stats-grid span {
     font-size: 13px;
     color: #777;
 }

 .read-more {
     display: inline-block;
     margin-top: 10px;
     font-weight: 600;
 }

 .article-details-card,
 .trust-card {
     background: #f5f5f5;
     border-radius: 16px;
     margin-bottom: 16px;
 }

 .article-details-card {
     /* padding-bottom: 10px; */
 }

 .author-row {
     margin-bottom: 14px;
     display: flex;
     flex-wrap: nowrap;
     justify-content: space-between;
     gap: 20px;
 }

 /* Hide on Mobile */
 /* @media only screen and (max-width: 768px) {
    .author-row {
        display: none !important;
    }
} */
 /* Tablet - 1024px */
 @media (max-width: 1024px) {
     .author-row {
         gap: 16px;
         margin-bottom: 12px;
     }
 }

 /* Mobile Landscape - 768px */
 @media (max-width: 768px) {
     .author-row {
         gap: 12px;
         /* flex-direction: column;*/
         align-items: stretch;
     }

     .author-left .author-name {
         font-size: 12px;
     }

     img.user-verified-icon {
         margin-top: 0 !important;
     }
 }



 /* Extra Small Mobile - 360px */
 @media (max-width: 360px) {
     .collapse-box-header {
         font-size: 13px !important;
     }
 }

 .author-hover-parent {
     position: relative;
 }

 .label {
     font-size: 13px;
     color: #777;
 }

 .author-info {
     /* display: flex; */
     justify-content: space-between;
     align-items: center;
     margin-top: 6px;
 }

 .author-left {
     display: flex;
     align-items: center;
     gap: 8px;

 }

 /* Mobile Responsive */
 @media only screen and (max-width: 768px) {
     .author-left {
         gap: 6px !important;
         align-items: center;
     }

 }

 @media only screen and (max-width: 480px) {
     .author-left {
         /* flex-direction: column !important;  */
         gap: 10px !important;
         text-align: left !important;
     }
 }

 .author-avatar {
     width: 100%;
     height: 50px;
     border-radius: 50%;
 }



 .author-x {
     font-size: 18px;
     color: #111;
 }

 .article-meta {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     padding-top: 10px;
     border-top: 1px solid #e5e7eb;
 }

 html[lang="it-IT"] .meta-item {
     gap: 10px;
     font-size: 13px;
 }

 html[lang="it-IT"] .article-meta {
     gap: 28px;
 }

 .meta-item {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     flex-wrap: wrap;
     color: #111827;
 }

 .meta-item strong {
     font-weight: 500;
     color: #6b7280;
 }

 .meta-item i {
     font-size: 18px;
     color: #555;
 }

 /* TRUST CARD */

 .trust-card {
     text-align: center;
     padding: 22px 18px;
 }

 .trust-img {
     display: flex;
     justify-content: center;
     margin-bottom: 12px;
 }

 .trust-img img {
     max-width: 160px;
 }

 .trust-card h4 {
     font-size: 20px;
     margin-bottom: 18px;
     color: #242424;
     text-align: center;
     font-family: "Chivo", sans-serif;

     font-style: normal;
     font-weight: 700;
     line-height: 122%;
     max-width: 191px;
     margin: 0 auto;
 }

 .trust-card h4 span {
     color: #2563eb;
 }

 .trust-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     padding-top: 10px;
 }

 .trust-grid strong {
     display: block;
     font-size: 28px;
     color: #242424;
     text-align: center;
     font-family: "Chivo", sans-serif;
     font-style: normal;
     font-weight: 700;
     line-height: 32px;
     letter-spacing: -.56px;
     word-break: break-word;

 }

 .trust-grid span {
     font-size: 13px;
     color: #777;
 }

 /* ===============================
   ARTICLE DETAILS – REF IMAGE UI
================================ */

 /* Meta grid spacing refine */
 /* .article-meta {
     gap: 70px;
 } */

 /* Meta item layout */
 .meta-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 14px;
     color: #111827;
 }

 .fa-time {
     font-size: 14px;
     font-weight: 500;
     font-style: normal;
 }

 /* Remove bold inline label look */


 /* ICONS via CSS (Font Awesome) */
 /* .meta-item:first-child::before {
     content: "\f073";
     font-family: "Chivo", sans-serif;
     font-weight: 900;
     font-size: 16px;
     color: #6b7280;
 } */

 /* .meta-item:last-child::before {
     content: "\f017";
     font-family: "Chivo", sans-serif;
     font-weight: 900;
     font-size: 16px;
     color: #6b7280;
 } */

 /* Align icon properly */
 .meta-item::before {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 20px;
 }

 /* Author X icon refine */
 .author-x {
     font-size: 20px;
     color: #564287;
     /* golden like ref */
 }

 /* Avatar exact size */
 .author-avatar {
     width: 44px;
     height: 44px;
 }

 /* Divider spacing match */
 /*  .article-meta {
     margin-top: 16px;
     padding-top: 16px;
     border-top: 1px solid #e5e7eb;
 } */

 /* ===============================
   Popular Categories Slider
================================ */
 .cd-popular-categories {
     padding: 40px 0;
     background: #fff;
 }

 .cd-section-head {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
 }

 /* Slider */
 .cd-category-slider {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     scroll-behavior: smooth;
 }

 .cd-category-slider::-webkit-scrollbar {
     display: none;
 }

 /* Card */
 .cd-category-card {
     min-width: 260px;
     background: #f6f6f6;
     border-radius: 16px;
     padding: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     text-decoration: none;
     color: #000;
 }

 /* Text */
 .cd-cat-content h5 {
     font-size: 18px;
     margin-bottom: 6px;
 }

 .cd-cat-content span {
     font-size: 14px;
     border-bottom: 2px solid #564287;
     padding-bottom: 2px;
 }

 /* Icon */
 .cd-cat-icon img {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     object-fit: cover;
 }

 /* ===== ARROWS ===== */

 .cd-cat-arrows {
     display: flex;
     gap: 10px;
 }

 .cd-cat-arrows button {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     border: none;
     background: #f1f1f1;
     font-size: 35px;
     font-weight: 600;
     cursor: auto;
     line-height: 1;
     display: flex;
     justify-content: center;
     margin: 0 auto;
     padding: 0px;
 }

 .cd-cat-arrows button:hover {
     background: #e5e5e5;
 }


 /* =================================================
   SUBSCRIBE – FULL WIDTH
================================================= */
 .cd-subscribe-section {
     background: #f5f5f5;
     padding: 60px 0;
 }

 .cd-subscribe {
     background: #fff4cc;
     padding: 28px;
     border-radius: 20px;
     max-width: 900px;
     margin: auto;
 }

 .cd-subscribe form {
     display: flex;
     gap: 12px;
     margin-top: 16px;
 }

 .cd-subscribe input {
     flex: 1;
     padding: 14px;
     border-radius: 10px;
     border: 1px solid #ccc;
 }

 .cd-subscribe button {
     background: #564287;
     border: none;
     padding: 14px 24px;
     border-radius: 10px;
     font-weight: 700;
     cursor: pointer;
 }


 img:is([sizes=auto i], [sizes^="auto," i]) {
     /* contain-intrinsic-size: 100px 100px; */
 }

 /* =========================
   Social Links
========================= */
 .social-follow p {
     font-size: 14px;
     color: #1f2937;
     font-weight: 700;
 }

 .social-media-links {
     display: none;
     /* JS toggle handle kare chhe */
 }

 .social-icon {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     background: #564287;
     color: #fff !important;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     transition: all 0.2s ease;
     /* text-decoration: none; */
 }

 .social-icon:hover {
     background: #8c6518;
     color: #fff;
 }

 /*
=========================
    DISCLOSURE BOX
================ */
 .disclosure-wrap {
     position: relative;
     display: inline-block;
     padding-bottom: 10px;
 }

 /* Button */
 .disclosure-btn {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 4px 10px;
     font-size: 13px;
     font-weight: 400;
     color: #1946F6;
     background: #E8ECFC;
     border-radius: 999px;
     border: none;
     cursor: pointer;
     white-space: nowrap;
     font-style: normal;
 }

 /* i icon */
 .disclosure-icon {
     width: 18px;
     height: 18px;
     background: #2563eb;
     color: #fff;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: bold;
 }

 /* Box */
 .disclosure-box {
     position: absolute;
     top: calc(100% + 10px);
     left: 0;
     width: 340px;
     background: #f8fafc;
     color: #1f2937;
     padding: 14px;
     border-radius: 12px;
     font-size: 13px;
     line-height: 1.6;
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
     display: none;
     z-index: 999;
 }

 /* Arrow */
 .disclosure-box::before {
     content: "";
     position: absolute;
     top: -6px;
     left: 20px;
     width: 12px;
     height: 12px;
     background: #f8fafc;
     transform: rotate(45deg);
 }

 .disclosure-box a {
     color: #584188;
 }

 /* Active state */
 .disclosure-wrap.active .disclosure-box {
     display: block;
 }

 /* default */
 .disclosure-mobile {
     display: none;
 }

 .article-mobile {
     display: none;
 }

 .disclaimer-mobile {
     display: none;
 }

 .about-mobile {
     display: none;
 }

 img.attachment-full.size-full {
     width: 100%;
     border-radius: 16px;
     object-fit: cover;
     height: 424px;
 }

 /* Tablet */
 @media (max-width: 1024px) and (min-width: 769px) {
     img.attachment-full.size-full {
         height: auto;
     }
 }

 /* Mobile Landscape */
 @media (max-width: 768px) and (min-width: 481px) {
     img.attachment-full.size-full {
         height: auto;
         object-position: center;
     }
 }

 /* Mobile Portrait */
 @media (max-width: 480px) {
     img.attachment-full.size-full {
         height: auto;
         border-radius: 12px;
     }
 }

 /* Small Mobile */
 @media (max-width: 360px) {
     img.attachment-full.size-full {
         height: auto;
     }
 }

 /* desktop */
 @media (min-width: 992px) {
     .disclosure-desktop {
         display: block;
     }
 }

 @media (min-width: 992px) {
     .article-desktop {
         display: block;
     }
 }

 /* @media (min-width: 992px) {
     .disclaimer-desktop {
         display: block;
     }
 }

 @media (min-width: 992px) {
     .about-desktop {
         display: block;
     }
 } */

 /* mobile */
 @media (max-width: 991px) {
     .disclosure-desktop {
         display: none;
     }

     .disclosure-mobile {
         display: inline-block;
         margin: 12px 0 8px;
     }
 }

 @media (max-width: 991px) {
     .article-desktop {
         display: none;
     }

     .article-mobile {
         display: block;
         margin: 12px 0 8px;
     }
 }

 /* @media (max-width: 991px) {
     .disclaimer-desktop {
         display: none;
     }

     .disclaimer-mobile {
         display: block;
         margin: 12px 0 8px;
     }
 }

 @media (max-width: 991px) {
     .about-desktop {
         display: none;
     }

     .about-mobile {
         display: block;
         margin: 12px 0 8px;
     }
 } */


 /* ===============================
            MOBILE WIDGET BLOCK and HOVER CARD
 =============================== */

 /* Desktop hide */
 @media (min-width: 992px) {
     .mobile-widget-block {
         display: none !important;
     }

     .author-social-icons a {
         font-size: 15px;
         color: #564287;
     }
 }

 /* Mobile show */
 @media (max-width: 991px) {

     .mobile-widget-block {

         display: flex;
         justify-content: flex-end;
         align-items: center;
         position: relative;
         padding-top: 5px;
         align-content: center;
         margin-top: 4px;
         padding-bottom: 15px;

     }

     /* ===============================
                DISCLOSURE
        =============================== */
     .disclosure-wrapper {
         padding: 5px;
         float: left;
         /* border-bottom: 1px solid #e5e7eb; */
     }

     .tooltip-box {
         position: relative;
     }

     .mobile-meta-bar {
         /* display: flex; */
         align-items: flex-start;
         justify-content: space-between;
         gap: 12px;
         position: relative;
         width: 100%;
     }


     .disclosure-btn {
         display: inline-flex;
         align-items: center;
         gap: 6px;
         padding: 4px 10px;
         font-size: 13px;
         font-weight: 600;
         color: #2563eb;
         background: #eef2ff;
         border-radius: 999px;
         border: none;
         cursor: pointer;
         white-space: nowrap;
     }

     /* .disclosure-btn::before {
         content: "i";
         width: 16px;
         height: 16px;
         background: #2563eb;
         color: #fff;
         border-radius: 50%;
         font-size: 12px;
         display: inline-flex;
         align-items: center;
         justify-content: center;
     } */

     .disclosure-tooltip {
         position: absolute;
         top: 130%;
         left: 0;
         width: 280px;
         max-width: 90vw;

         background: #ffffff;
         border: 1px solid #e5e7eb;
         border-radius: 14px;
         padding: 14px;

         font-size: 14px;
         line-height: 1.55;
         color: #374151;

         box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
         display: none;
         z-index: 999;
     }

     /* Active state */
     .tooltip-box.is-open .disclosure-tooltip {
         display: block;
     }

     .tooltip-box:hover .disclosure-tooltip {
         display: block;
     }

     /* Reviewed by */
     .reviewed-by {
         display: flex;
         align-items: center;
         gap: 10px;
         max-width: 70%;
     }

     .reviewed-avatar {
         width: 42px;
         height: 42px;
         border-radius: 50%;
         object-fit: cover;
     }

     .reviewed-meta {
         display: flex;
         flex-direction: column;
         line-height: 1.25;
     }

     .reviewed-label {
         font-size: 12px;
         color: #6b7280;
     }

     .reviewed-name {
         display: inline-flex;
         align-items: center;
         gap: 5px;
         font-size: 14px;
         font-weight: 600;
         color: #111827;
         text-decoration: none;
     }


     .reviewed-name:hover {
         /* text-decoration: underline; */
     }

     .verified-icon {
         width: 14px;
         height: 14px;
     }

     /* SHORT AUTHOR CONTENT */
     .reviewed-role {
         font-size: 12.5px;
         color: #6b7280;

         display: -webkit-box;
         -webkit-line-clamp: 2;
         -webkit-box-orient: vertical;
         overflow: hidden;
     }

     /* SHORT AUTHOR CONTENT */
     .reviewed-role {
         font-size: 12.5px;
         color: #6b7280;

         display: -webkit-box;
         -webkit-line-clamp: 2;
         -webkit-box-orient: vertical;
         overflow: hidden;
     }

     /* Exact Hover Card UI */
     .author-hover-wrap {
         position: relative;
         /* display: flex; */
         align-items: center;
         gap: 10px;
     }

     .author-hover-card {
         position: absolute;
         top: 40px;
         width: 320px;
         background: #fff;
         border-radius: 14px;
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
         padding: 18px;
         z-index: 999;

         opacity: 0;
         visibility: hidden;
         transform: translateY(12px);
         transition: all .25s ease;
     }


     /* HOVER ONLY */
     .author-hover-parent:hover .author-hover-card {
         opacity: 1;
         visibility: visible;
         transform: translateY(0);
     }

     /* LEFT AUTHOR */
     .author-hover-parent[data-position="left"] .author-hover-card {
         left: 0 !important;
         transform: translateX(-10%) !important;
     }

     /* RIGHT AUTHOR */
     .author-hover-parent[data-position="right"] .author-hover-card {
         right: 0 !important;
         transform: translateX(10%) !important;
     }

     /* IF ONLY ONE AUTHOR CENTER */
     .author-row:has(.author-hover-parent:only-child) .author-hover-card {
         left: 50%;
         transform: translate(-50%, 12px);
     }

     .author-row:has(.author-hover-parent:only-child):hover .author-hover-card {
         transform: translate(-50%, 0);
     }

     /* HEADER */
     .hover-header {
         display: flex;
         gap: 12px;
         align-items: center;
     }

     .hover-header img {
         width: 35px;
         height: 35px;
         border-radius: 50%;
     }


     img.verified-small {
         width: 16px;
         height: 16px;
         /* margin-left: 6px; */
         float: right;
         /* margin-top: -15px; */
         margin-right: -20px;
     }

     /* EXPERTISE */
     .hover-expertise {
         margin-top: 14px;
     }

     .hover-expertise ul {
         padding-left: 18px;
         margin: 6px 0;
     }

     /* BIO */
     .hover-bio {
         font-size: 13px;
         color: #555;
         margin-top: 10px;
         margin: 5px;
     }

     /* SOCIAL */
     .hover-social {
         margin-top: 10px;
         display: flex;
         gap: 14px;
         color: #564287;
     }

     /* SHOW ON HOVER */
     .author-hover-wrap:hover .author-hover-card {
         opacity: 1;
         visibility: visible;
         pointer-events: auto;
     }

     .author-card-header {
         display: flex;
         gap: 12px;
         align-items: center;
     }

     .author-card-header img {
         width: 56px;
         height: 56px;
         border-radius: 50%;
     }

     .author-card-header strong {
         display: block;
         font-size: 16px;
     }

     .author-title {
         font-size: 13px;
         color: #6b7280;
     }

     .author-expertise {
         margin: 12px 0;
     }

     .author-expertise ul {
         padding-left: 18px;
         margin: 6px 0 0;
     }

     .author-expertise li {
         font-size: 13px;
         color: #374151;
     }

     .author-bio {
         font-size: 13px;
         color: #374151;
         line-height: 1.5;
     }

     .full-bio {
         display: inline-block;
         margin-top: 8px;
         font-size: 13px;
         color: #2563eb;
         font-weight: 600;
     }

     .author-socials {
         margin-top: 10px;
         display: flex;
         gap: 12px;
     }

     .author-socials a {
         font-weight: 600;
         color: #111827;
         text-decoration: none;
     }

     /* @media (max-width: 991.98px) {
         .mobile-widget-block .disclosure-wrapper {
             position: absolute;
             left: 0;
             top: 0;
         }
     } */

     /* ===============================
                ARTICLE DETAILS
      =============================== */
     .article-details-box {
         margin: 0;
         /* float: right; */
         overflow: visible;
     }

     .mobile-meta-bar .collapse-box,
     .mobile-meta-bar .collapse-box-header {
         background: none !important;
         padding: 5px !important;
     }

     .article-details-header {
         display: flex;
         justify-content: flex-end;
         align-items: center;
         /* padding: 14px 0; */
         /* font-size: 16px; */
         font-weight: 600;
         cursor: pointer;
         border-radius: 5px;
     }

     /* .article-details-header .collapse-icon {
         width: 8px;
         height: 8px;
         border-right: 2px solid #6b7280;
         border-bottom: 2px solid #6b7280;
         transform: rotate(45deg);
         transition: .3s;
     } */

     .article-details-box.active .collapse-icon {
         transform: rotate(-135deg);
     }

     .disclaimer-desktop.active .collapse-icon {
         transform: rotate(-180deg);
     }

     .disclaimer-desktop.collapse-icon {
         width: 7px;
         height: 7px;
         border-right: 2px solid #111827;
         border-bottom: 2px solid #111827;
         transform: rotate(45deg);
         transition: transform .25s ease;
         margin-left: 10px;
     }

     .collapse-box-content {
         border-top: 1px solid #e5e7eb;
         padding-top: 14px;
     }

     /* ===============================
                AUTHOR
    =============================== */

     .author-label {
         font-size: 13px;
         color: #666;
         margin-bottom: 4px;
         display: block;
     }

     .author-inline-row {
         /* display: flex; */
         align-items: center;
         gap: 10px;
     }

     .author-name-link {
         font-size: 15px;
         font-weight: 600;
         color: #000;
         text-decoration: none;
     }

     .author-social-icons {
         display: flex;
         gap: 7px;
         margin: 0;
         padding: 0;
         list-style: none;
         /*margin-left: 15px;*/
     }

     .author-social-icons a {
         font-size: 14px;
         color: #564287;
     }

     .article-divider {
         border-top: 1px solid #eee;
         margin: 12px 0;
     }

     .article-meta-row {
         display: flex;
         justify-content: space-between;
         font-size: 13px;
         color: #555;
     }

     .meta-item {
         display: flex;
         align-items: center;
         gap: 7px;
         /* width: 151px; */
         font-size: 12px;
     }

     .fa-time {
         font-size: 11px;
         font-weight: 500;
         font-style: normal;
     }

     html[lang="it-IT"] .meta-item {
         /* width: 170px; */
         font-size: 9px;
     }

     /* .author-label {
         font-size: 13px;
         color: #6b7280;
     } */

     .author-bio-grid {
         display: grid;
         grid-template-columns: 56px 1fr auto;
         gap: 10px;
         align-items: center;
         margin-top: 8px;
     }

     .author-avatar-img img {
         width: 48px;
         height: 48px;
         border-radius: 50%;
     }

     /* .author-name-link {
         font-weight: 600;
         font-size: 15px;
         color: #111827;
         text-decoration: none;
     } */

     .author-social-link i {
         font-size: 16px;
         color: #111827;
     }

     /* ===============================
        META INFO
        =============================== */
     .last-updated-post {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 60px;
         margin-top: 16px;
         padding-top: 14px;
         border-top: 1px solid #e5e7eb;
     }

     .post-date-col,
     .post-time-col {
         /* display: flex; */
         align-items: center;
         gap: 8px;
         font-size: 14px;
         color: #374151;
     }

     .post-date-col::before {
         content: "📅";
     }

     .post-time-col::before {
         content: "⏱️";
     }

     .post-published-date,
     .post-read-time {
         font-weight: 500;
     }

 }

 /* =========================================
   DESKTOP HOVER CARD (991px and above)
========================================= */
 @media (min-width: 992px) {

     /* Parent */
     .author-hover-parent {
         position: relative;
         display: inline-block;
     }

     /* Hover Card */
     .author-hover-card {
         position: absolute;
         top: 70px;
         width: 340px;
         background: #ffffff;
         border-radius: 16px;
         padding: 20px;
         box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
         z-index: 9999;

         opacity: 0;
         visibility: hidden;
         transform: translateY(15px);
         transition: all 0.28s ease;
         will-change: transform, opacity;
     }

     /* Show on Hover */
     .author-hover-parent:hover .author-hover-card {
         opacity: 1;
         visibility: visible;
         transform: translateY(0);
     }

     /* LEFT Position */
     .author-hover-parent[data-position="left"] .author-hover-card {
         left: 0;
     }

     /* RIGHT Position */
     .author-hover-parent[data-position="right"] .author-hover-card {
         right: 0;
     }

     /* If only one author center it */
     .author-row:has(.author-hover-parent:only-child) .author-hover-card {
         left: 50%;
         transform: translate(-50%, 15px);
     }

     .author-row:has(.author-hover-parent:only-child):hover .author-hover-card {
         transform: translate(-50%, 0);
     }

     /* ================= HEADER ================= */

     .hover-header {
         display: flex;
         align-items: flex-start;
         gap: 14px;
         margin-bottom: 5px;
     }

     .hover-header img {
         width: 45px;
         height: 45px;
         border-radius: 50%;
         object-fit: cover;
     }

     .hover-header-info h4 {
         font-size: 14px;
         font-weight: 700;
         margin: 0;
         display: flex;
         align-items: center;
         gap: 6px;
     }

     .author-hover-card .verified-small {
         width: 16px !important;
         height: 16px !important;
         /* min-width: 12px; */
         min-height: 12px;
         object-fit: contain;
         /* margin-left: 4px; */
         /* vertical-align: middle; */
     }

     .author-role {
         font-size: 14px;
         color: #6b7280;
         margin-top: 4px;
     }

     /* ================= EXPERTISE ================= */

     .hover-expertise {
         margin-top: 14px;
     }

     .hover-expertise strong {
         font-size: 14px;
         display: block;
         margin-bottom: 6px;
     }

     .hover-expertise ul {
         padding-left: 18px;
         margin: 0;
     }

     .hover-expertise li {
         font-size: 13.5px;
         margin-bottom: 4px;
         color: #444;
     }

     /* ================= BIO ================= */

     .hover-bio {
         font-size: 14px;
         line-height: 1.6;
         color: #555;
     }

     /* ================= FULL BIO LINK ================= */

     .full-bio {
         display: inline-block;
         margin-top: 10px;
         font-size: 14px;
         font-weight: 600;
         color: #2563eb;
         text-decoration: none;
     }



     /* ================= SOCIAL ================= */

     .hover-social {
         margin-top: 14px;
         display: flex;
         gap: 14px;
         color: #564287;
     }

     /* .hover-social a {
        font-size: 15px;
        color: #444;
        transition: 0.2s ease;
    } */

     .hover-social a:hover {
         color: #564287;
         transform: translateY(-2px);
     }

     /* Prevent clipping inside container */
     .article-details-card,
     .collapse-box-content,
     .author-row {
         overflow: visible !important;
     }
 }

 /* ===============================
            REMOVE EXTRA ARROW (THEME)
            =============================== */

 /* Theme accordion arrow hide */
 .article-details-header::after,
 .article-details-header::before,
 .collapse-box-header::after,
 .collapse-box-header::before {
     display: none !important;
     content: none !important;
 }

 /* ===============================
            SINGLE CUSTOM ARROW
   =============================== */

 .article-details-header {
     position: relative;
 }

 /* Arrow style */
 /* .article-details-header .collapse-icon {
     width: 7px;
     height: 7px;
     border-right: 2px solid #111827;
     border-bottom: 2px solid #111827;
     transform: rotate(45deg);
     transition: transform .25s ease;
     margin-left: 10px;
 } */

 /* Open state */
 .article-details-box.active .collapse-icon {
     transform: rotate(-180deg);
 }


 /* ===============================
   Archive Layout
================================ */

 .category-most-popular {
     margin: 20px 0px;
 }

 .archive-news-articles {
     margin: 20px 0px;
 }

 .flex-row {
     display: flex;
     gap: 32px;
 }

 .flex-left-col {
     width: 70%;
 }

 .common-sidebar {
     width: 30%;
 }

 @media (max-width: 1024px) {
     .flex-row {
         flex-direction: column;
     }

     .flex-left-col,
     .common-sidebar {
         width: 100%;
     }
 }

 /* ===============================
   ARCHIVE HEADER
================================ */

 .archive-header-wrapper {
     margin-bottom: 24px;
     padding: 24px 32px;
     border-radius: 24px;
 }

 .crypto-archive-sub-content h1 {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 6px;
 }

 .post-count {
     font-size: 13px;
     color: #777;
 }

 /* ===============================
   MOST POPULAR GRID
================================ */

 .posts-grid {
     display: grid;
     grid-template-columns: 1fr 306px;
     gap: 30px;
 }

 .category-most-popular-news-list .posts-grid-right a {
     color: #fff;
 }

 .category-most-popular-news-list .posts-grid-right a:hover {
     color: #fff;
 }

 @media (max-width: 991.98px) {
     .posts-grid {
         grid-template-columns: 1fr;
         gap: 16px;
     }
 }

 /* LEFT GRID */
 .posts-grid-left {
     display: grid;
     gap: 16px;
 }

 @media (min-width: 992px) {
     .posts-grid-left {
         grid-template-columns: repeat(2, 1fr);
         gap: 30px 16px;
     }

     /* BIG FIRST CARD */
     .posts-grid-left .post-item-card:first-child {
         grid-column: span 2;
     }
 }

 @media (max-width: 991.98px) {
     .posts-grid-left .post-item-card:nth-of-type(1) {
         /* .article-grid-6 .news-card:nth-of-type(1) */
         display: grid;
         grid-template-columns: 1fr;
         grid-auto-flow: row;
     }
 }

 @media (max-width: 991.98px) {
     .posts-grid-left .post-item-card:not(:first-child) {
         /* .article-grid-6 .news-card:not(:first-child) */
         display: grid;
         grid-template-columns: 130px 1fr;
         gap: 15px;
         align-items: center;
         padding-bottom: 5px;
     }
 }

 .posts-grid-left .post-item-card:nth-of-type(1) .post-item-title a {
     font-size: 22px;
     line-height: 1.25;
     font-weight: 700;
     color: #242424;
     font-style: normal;
     align-self: stretch;
 }

 @media (max-width: 991px) {
     .posts-grid-left .post-item-card .post-item-title a {
         font-size: 14px;
         align-self: stretch;
         font-style: normal;
         color: #242424;
     }
 }

 /* ===============================
   POST CARD
================================ */

 .post-item-card {
     display: flex;
     flex-direction: column;
     background: #F5F5F5;
     border-radius: 10px;
 }

 img.attachment-large.size-large.wp-post-image {
     width: 100%;
     height: auto;
 }

 /* Tablet */
 @media (max-width: 1024px) and (min-width: 769px) {
     img.attachment-large.size-large.wp-post-image {
         height: auto;
     }
 }

 /* Mobile Landscape */
 @media (max-width: 768px) and (min-width: 481px) {
     img.attachment-large.size-large.wp-post-image {
         /* height: 300px; */
         object-position: center;
     }
 }

 /* Mobile Portrait */
 @media (max-width: 480px) {
     img.attachment-large.size-large.wp-post-image {
         height: auto;
         border-radius: 12px;
     }
 }

 /* Small Mobile */
 @media (max-width: 360px) {
     img.attachment-large.size-large.wp-post-image {
         height: auto;
     }
 }

 .post-item-thumb {
     overflow: hidden;
     border-radius: 16px;
 }

 .post-item-thumb img {
     width: 100%;
     height: 144px;
     object-fit: cover;
     border-radius: 16px;
 }

 /* BIG IMAGE */
 @media (min-width: 992px) {
     .posts-grid-left .post-item-card:first-child .post-item-thumb img {
         height: 328px;
         border-radius: 24px;
     }


 }

 .post-item-summary {
     padding: 10px;
 }

 @media (max-width: 767px) {
     .post-item-summary {
         padding: 8px 12px;
     }
 }

 .post-item-title a {
     text-decoration: none;
     color: #000;
     font-weight: 600;
     line-height: 1.3;
 }

 /* BIG TITLE */
 @media (min-width: 992px) {
     .posts-grid-left .post-item-card:first-child .post-item-title a {
         font-size: 28px;
         line-height: 32px;
         letter-spacing: -0.56px;
     }
 }

 /* ===============================
   META
================================ */

 .cd-post-time {
     /* display: flex; */
     gap: 10px;
     font-size: 12px;
     color: #777;
     margin-top: 6px;
 }

 @media (min-width: 992px) {
     .posts-grid-left .post-item-card:first-child .cd-post-time {
         /* display: none; */
     }
 }

 /* ===============================
   RIGHT COLUMN – LIST
================================ */

 .common-post-list {
     background: linear-gradient(135deg, #050816 0%, #191970 40%, #5b21b6 100%);
     border-radius: 24px;
     padding: 16px;
     color: #fff;
 }

 .common-post-list .post-item {
     padding-bottom: 16px;
     margin-bottom: 16px;
     border-bottom: 1px solid #E5E5E5;
 }

 .common-post-list .post-item:last-child {
     margin-bottom: 0;
     border-bottom: none;
 }

 .common-post-list .post-item-heading a {
     font-size: 14px;
     font-weight: 500;
     color: #fff;
     text-decoration: none;
 }

 span.post-date {
     font-size: 12px;
     color: #2ecc71;
 }

 /* ===============================
   BREADCRUMB
================================ */

 .cd-breadcrumb {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 14px;
 }

 .breadcrumb-current {
     color: #888;
 }

 @media (max-width: 600px) {
     .cd-breadcrumb {
         font-size: 12px;
     }
 }

 /* ===============================
   PAGINATION (CLEAN)
================================ */

 .cd-pagination .nav-links {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .cd-pagination ul.page-numbers {
     display: flex;
     gap: 8px;
     list-style: none;
     padding: 0;
 }

 .cd-pagination ul.page-numbers li {
     min-width: 2rem;
     height: 2rem;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* arrows */
 .cd-pagination-prev,
 .cd-pagination-next {
     width: 2rem;
     height: 2rem;
     border-radius: 50%;
     background: #E8ECFC;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .cd-pagination-prev.disabled,
 .cd-pagination-next.disabled {
     background: #F5F5F5;
     pointer-events: none;
 }

 /* ===============================
   MOBILE FLEX FIX (OVERRIDE)
================================ */

 /* Tablet + Mobile */
 @media (max-width: 1024px) {
     .flex-row {
         flex-direction: column !important;
         /* override utilities.scss */
         gap: 16px;
     }

     .flex-left-col,
     .common-sidebar {
         width: 100% !important;
         max-width: 100%;
     }
 }

 /* Extra small devices */
 @media (max-width: 600px) {
     .flex-row {
         gap: 12px;
     }
 }

 /* Only desktop should ever be row */
 @media (min-width: 1025px) {
     .flex-row {
         flex-direction: row !important;
         padding-top: 20px;
     }
 }

 @media (max-width: 767px) {
     .post-item-card.rest-article img {
         height: 90px;
         width: 100%;
     }
 }

 @media (max-width: 1024px) {
     .post-item-card.rest-article img {
         height: 95px;
         width: 100%;
     }
 }


 /* =========================
   404 PAGE LAYOUT
========================= */
 .error-page {
     padding: 50px 0;
 }

 .error-container {
     max-width: 1280px;
     margin: auto;
     padding: 0 15px;
     display: grid;
     grid-template-columns: 1fr 420px;
     gap: 40px;
 }

 /* =========================
   LEFT
========================= */
 .error-breadcrumb {
     font-size: 14px;
     color: #777;
     margin-bottom: 18px;
 }

 .error-breadcrumb a {
     color: #6a5af9;
     text-decoration: none;
 }

 .error-card {
     background: #fff;
     border-radius: 20px;
     padding: 40px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
 }

 .error-card h1 {
     font-size: 32px;
     font-weight: 900;
     margin-bottom: 6px;
     /* color: #6a5af9; */
 }

 .error-card h2 {
     font-size: 26px;
     margin-bottom: 10px;
 }

 .error-card p {
     color: #666;
     margin-bottom: 24px;
     font-size: 15px;
 }

 .error-actions {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .error-actions input[type="search"] {
     width: 100%;
     padding: 14px;
     border-radius: 12px;
     border: 1px solid #ddd;
 }

 /* HOME BUTTON */
 .home-btn {
     display: inline-block;
     padding: 14px;
     text-align: center;
     border-radius: 12px;
     background: #6a5af9;
     color: #fff;
     text-decoration: none;
     font-weight: 700;
 }

 /* =========================
   SIDEBAR
========================= */
 .error-widget {
     background: #f9f9f9;
     border-radius: 18px;
     padding: 24px;
     margin-bottom: 30px;
 }

 .stats-widget h3 {
     text-align: center;
     margin-bottom: 20px;
 }

 .stats-widget span {
     color: #6a5af9;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     text-align: center;
 }

 .stats-grid strong {
     font-size: 24px;
     display: block;
 }

 .stats-grid span {
     font-size: 13px;
     color: #777;
 }

 /* =========================
   MOBILE
========================= */
 @media (max-width: 992px) {
     .error-container {
         grid-template-columns: 1fr;
     }

     .error-sidebar {
         order: 2;
     }

     .error-card {
         padding: 28px;
     }

     .error-card h1 {
         font-size: 56px;
     }
 }

 /* =========================
   SEARCH PAGE LAYOUT
========================= */
 .search-page {
     padding: 40px 0;
 }

 .search-container {
     max-width: 1280px;
     margin: auto;
     padding: 0 15px;
     display: grid;
     grid-template-columns: 1fr 420px;
     gap: 40px;
 }

 /* =========================
   LEFT
========================= */
 .search-breadcrumb {
     font-size: 14px;
     color: #777;
     margin-bottom: 18px;
 }

 .search-breadcrumb a {
     color: #6a5af9;
     text-decoration: none;
 }

 .search-empty-card {
     background: #fff;
     border-radius: 18px;
     padding: 32px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
 }

 .search-empty-card h2 {
     font-size: 26px;
     margin-bottom: 10px;
 }

 .search-empty-card p {
     color: #666;
     margin-bottom: 20px;
 }

 .search-form-wrap input[type="search"] {
     width: 100%;
     padding: 14px;
     border-radius: 12px;
     border: 1px solid #ddd;
 }

 /* =========================
   SIDEBAR
========================= */
 .search-widget {
     background: #f9f9f9;
     border-radius: 18px;
     padding: 24px;
     margin-bottom: 30px;
 }

 .stats-widget h3 {
     text-align: center;
     margin-bottom: 20px;
 }

 .stats-widget span {
     color: #6a5af9;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     text-align: center;
 }

 .stats-grid strong {
     font-size: 24px;
     display: block;
 }

 .stats-grid span {
     font-size: 13px;
     color: #777;
 }

 /* =========================
   MOBILE
========================= */
 @media (max-width: 992px) {
     .search-container {
         grid-template-columns: 1fr;
     }

     .search-sidebar {
         order: 2;
     }
 }

 /* =========================
   SEARCH RESULT CARD
========================= */
 .search-result-card {
     display: flex;
     gap: 22px;
     background: #fff;
     border-radius: 18px;
     padding: 22px;
     margin-bottom: 26px;
     box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
 }

 .search-thumb {
     width: 220px;
     flex-shrink: 0;
 }

 .search-thumb img {
     width: 100%;
     height: 140px;
     object-fit: cover;
     border-radius: 14px;
 }

 .search-content {
     flex: 1;
 }

 .search-title {
     font-size: 20px;
     font-weight: 800;
     margin-bottom: 8px;
 }

 .search-title a {
     text-decoration: none;
     color: #111;
 }

 .search-meta {
     display: flex;
     gap: 16px;
     font-size: 13px;
     color: #777;
     margin-bottom: 10px;
 }

 .search-meta i {
     margin-right: 5px;
     color: #6a5af9;
 }

 .search-excerpt {
     color: #555;
     font-size: 14px;
     line-height: 1.6;
     margin-bottom: 12px;
 }

 .read-more {
     font-weight: 700;
     font-size: 14px;
     color: #6a5af9;
     text-decoration: none;
 }

 /* =========================
   MOBILE
========================= */
 @media (max-width: 768px) {
     .search-result-card {
         flex-direction: column;
     }

     .search-thumb {
         width: 100%;
     }

     .search-thumb img {
         height: 180px;
     }

 }

 /* =========================
 Custom Comment Form Shortcode
 ========================= */
 .cw-comment-box {
     background: #fff;
     border-radius: 14px;
     max-width: 900px;
     margin: 30px auto;
     box-shadow: 0 0 0 1px #e8ebff;
     font-family: inherit;
 }

 .cw-comment-header {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 600;
     color: #444;
     padding: 22px;
 }

 .cw-comment-icon {
     font-size: 25px;
 }

 .cw-comment-header h3 {
     font-size: 24px;
     font-family: "Chivo", sans-serif;
     font-weight: 700;
     color: #424242cc;
     line-height: 32px
 }

 .cw-comment-inner h4 {
     font-size: 24px;
     font-family: "Chivo", sans-serif;
     font-weight: 700;
     color: #242424;
     line-height: 32px
 }

 .cw-comment-inner {
     margin-top: 18px;
     background: #f5f5f5;
     border-radius: 14px;
     padding: 24px;
 }

 .cw-comment-inner h4 {
     margin: 0;
     font-size: 20px;
 }

 .cw-comment-inner p {
     margin: 6px 0 18px;
     font-size: 14px;
 }

 .cw-row {
     display: flex;
     gap: 16px;
     margin-bottom: 16px;
 }

 .cw-row input {
     flex: 1;
 }

 .cw-comment-form input,
 .cw-comment-form textarea {
     width: 100%;
     padding: 14px 18px;
     border-radius: 999px;
     border: none;
     outline: none;
     font-size: 14px;
 }

 .cw-comment-form textarea {
     border-radius: 999px;
     height: 56px;
     resize: none;
     margin-bottom: 18px;
 }

 .cw-comment-form button {
     background: none;
     border: none;
     font-weight: 600;
     color: #000;
     cursor: pointer;
     padding-bottom: 6px;
     border-bottom: 2px solid #564287;
 }

 /* ===== Mobile ===== */
 /* ===============================
   MOBILE VIEW (max-width: 768px)
================================ */
 @media (max-width: 768px) {

     .cw-comment-box {
         margin: 20px 12px;
         border-radius: 12px;
     }

     .cw-comment-header {
         padding: 16px;
         gap: 8px;
     }

     .cw-comment-icon {
         font-size: 22px;
     }

     .cw-comment-header h3 {
         font-size: 20px;
         line-height: 26px;
     }

     .cw-comment-inner {
         margin-top: 12px;
         padding: 18px;
         border-radius: 12px;
     }

     .cw-comment-inner h4 {
         font-size: 18px;
         line-height: 24px;
     }

     .cw-comment-inner p {
         font-size: 13px;
         margin-bottom: 14px;
     }

     /* Inputs stack vertically */
     .cw-row {
         flex-direction: column;
         gap: 12px;
         margin-bottom: 14px;
     }

     .cw-comment-form input,
     .cw-comment-form textarea {
         padding: 12px 16px;
         font-size: 14px;
         border-radius: 12px;
     }

     .cw-comment-form textarea {
         height: 80px;
         border-radius: 14px;
     }

     .cw-comment-form button {
         font-size: 14px;
         margin-top: 6px;
         padding-bottom: 4px;
     }
 }

 /* =====================================================
   CONTACT SECTION
===================================================== */

 .newsletter-secn {
     /*   padding: 80px 0;*/
 }

 .newsletter-outer.newsletter-single {
     display: flex;
     justify-content: left;
 }

 .newsletter-box {
     max-width: 720px;
     width: 100%;
 }

 .newsletter-title {
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 12px;
 }

 .newsletter-desc {
     font-size: 16px;
     opacity: 0.85;
     margin-bottom: 32px;
     color: #fff !important;
     line-height: 1.6;
 }

 /* =====================================================
   CONTACT FORM 7 – GRID FORM
===================================================== */

 .cf7-contact-form {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px 24px;
     width: 100%;
 }

 /* Field wrapper */
 .cf7-field {
     display: flex;
     flex-direction: column;
 }

 /* Full width fields */
 .cf7-field.full {
     grid-column: 1 / -1;
 }

 /* Labels */
 .cf7-field label {
     margin-bottom: 6px;
     font-size: 14px;
     font-weight: 500;
     color: #fff;
 }

 /* Inputs / Select / Textarea */
 .cf7-field input,
 .cf7-field select,
 .cf7-field textarea {
     width: 100%;
     height: 52px;
     padding: 0 16px;
     border-radius: 14px;
     border: none;
     font-size: 15px;
     outline: none;
     box-sizing: border-box;
 }

 /* Textarea */
 .cf7-field textarea {
     height: 130px;
     padding: 12px 16px;
     resize: vertical;
 }

 /* =====================================================
   SELECT DROPDOWN ARROW FIX
===================================================== */

 .cf7-field select {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;

     background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
     background-repeat: no-repeat;
     background-position: right 16px center;
     background-size: 14px;
     padding-right: 42px;
 }

 /* =====================================================
   SUBMIT BUTTON
===================================================== */

 .cf7-submit {
     grid-column: 1 / -1;
     margin-top: 10px;
     position: relative;
     display: inline-block;
     overflow: hidden;
 }

 .cf7-submit input[type="submit"] {
     height: 54px;
     padding: 0 40px;
     border-radius: 14px;
     border: none;
     background: linear-gradient(135deg, #9489ff, #564bc6);
     color: #fff;
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
 }

 /* =====================================================
   ERROR & RESPONSE MESSAGES
===================================================== */

 .wpcf7-not-valid-tip {
     margin-top: 6px;
     font-size: 13px;
     line-height: 1.3;
     color: #ff4d4f;
 }

 .wpcf7-response-output {
     grid-column: 1 / -1;
     margin-top: 20px;
     padding: 12px 16px;
     border-radius: 10px;
     font-size: 14px;
 }

 /* Remove CF7 default spacing */
 .wpcf7-form p {
     margin: 0;
 }

 .cf7-submit .wpcf7-submit {
     position: relative;
     z-index: 2;
     padding: 14px 40px;
     background: linear-gradient(135deg, #6c63ff, #8b7bff);
     color: #fff;
     border: none;
     cursor: pointer;
     font-size: 16px;
     border-radius: 10px;
 }


 /* =====================================================
   MOBILE
===================================================== */

 @media (max-width: 640px) {
     .cf7-contact-form {
         grid-template-columns: 1fr;
     }
 }

 img.user-verified-icon {
     width: 16px;
     height: 16px;
     margin-left: -6px;
     /*  margin-top: 5px;*/
 }

 .author-title:after {
     content: "💼";
     margin-left: 6px;
     font-size: 14px;
 }

 span.ra-separator {
     padding: 5px;
 }

 /* .cd-page-layout a {
    color: #584188;
    text-decoration: underline;
} */
 .cd-page-content a {
     color: #584188;

 }

 /*Search Popup*/

 .search-popup {
     position: fixed;
     inset: 0;
     display: none;
     z-index: 9999;
 }

 .search-popup.active {
     display: block;
 }

 .search-popup-overlay {
     position: absolute;
     inset: 0;
     background: rgba(10, 10, 25, 0.75);
     backdrop-filter: blur(8px);
 }

 .search-popup-box {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) scale(0.92);
     background: linear-gradient(135deg, #0b0b2d, #1a1a4a);
     padding: 40px 35px;
     width: 92%;
     max-width: 540px;
     border-radius: 18px;
     text-align: center;
     transition: 0.25s ease;
     border: 1px solid rgba(255, 255, 255, 0.06);
     box-shadow: 0 15px 60px rgba(0, 0, 0, 0.6);
 }

 .search-popup.active .search-popup-box {
     transform: translate(-50%, -50%) scale(1);
 }

 .search-popup h3 {
     color: #fff;
     font-size: 26px;
     margin-bottom: 6px;
 }

 .search-sub {
     color: #b9b9d6;
     font-size: 14px;
     margin-bottom: 22px;
 }

 .search-field-wrap {
     display: flex;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 12px;
     padding: 6px;
     gap: 8px;
 }

 .search-field-wrap input {
     flex: 1;
     background: transparent;
     border: none;
     color: #fff;
     padding: 14px;
     font-size: 15px;
     outline: none;
     color: #fff !important;
 }

 .search-field-wrap input::placeholder {
     color: #a8a8c5;
 }

 .search-field-wrap button {
     background: linear-gradient(135deg, #7a5cff, #5c8dff);
     border: none;
     color: #fff;
     padding: 12px 22px;
     border-radius: 10px;
     font-weight: 600;
     cursor: pointer;
     transition: 0.2s ease;
 }

 .search-field-wrap button:hover {
     transform: translateY(-1px);
     box-shadow: 0 6px 18px rgba(92, 141, 255, 0.35);
 }

 .search-close {
     position: absolute;
     top: 14px;
     right: 18px;
     font-size: 26px;
     color: #fff;
     cursor: pointer;
     opacity: 0.7;
 }

 .search-close:hover {
     opacity: 1;
 }

 /* =========================
   Mobile Responsive (<=576px)
========================= */
 @media (max-width: 576px) {

     .search-popup-box {
         width: 94%;
         max-width: 94%;
         padding: 25px 18px;
         border-radius: 14px;
     }

     .search-popup h3 {
         font-size: 20px;
         line-height: 1.3;
     }

     .search-sub {
         font-size: 13px;
         margin-bottom: 18px;
     }

     .search-field-wrap {
         flex-direction: column;
         gap: 10px;
         padding: 10px;
     }

     .search-field-wrap input {
         width: 100%;
         padding: 12px;
         font-size: 14px;
         color: #fff !important;
     }

     .search-field-wrap button {
         width: 100%;
         padding: 12px;
         font-size: 14px;
         border-radius: 8px;
     }

     .search-close {
         top: 10px;
         right: 12px;
         font-size: 22px;
     }
 }



 /* Archive Header Wrapper */
 .cd-archive-head1 {
     position: relative;
     max-width: 900px;
     margin: 0 auto 50px;
     padding: 20px 40px;
     background: #f5f5f5;
     border-radius: 18px;
     border: 1px solid #e6ecf2;
 }

 /* Logo top right */
 .archive-logo {
     position: absolute;
     top: 30px;
     right: 0px;
 }

 .archive-logo img {
     width: 150px;
     height: auto;
     opacity: 0.95;
 }

 /* Mobile Fix */
 @media (max-width: 768px) {
     .archive-logo {
         position: static;
         text-align: right;
         margin-bottom: 15px;
     }

     .archive-logo img {
         width: 45px;
     }
 }

 /* Archive Header Wrapper */
 .cd-archive-head1 {
     position: relative;
     max-width: 900px;
     margin: 0 auto 40px;
     padding: 35px 40px;
     background: #f8fafc;
     border-radius: 20px;
     border: 1px solid #e2e8f0;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
 }

 /* Logo top right desktop */
 .archive-logo {
     position: absolute;
     top: 25px;
     right: 30px;
 }

 .archive-logo img {
     width: 120px;
     height: auto;
     opacity: 0.95;
 }

 /* Title */
 .cd-archive-head1 h1 {
     font-size: 42px;
     font-weight: 800;
     color: #0f172a;
     margin-bottom: 20px;
     letter-spacing: -0.5px;
 }

 /* Term Description Wrapper */
 .term-description-wrapper {
     max-width: 900px;
 }

 .term-description {
     line-height: 1.8;
     font-size: 16px;
     color: #5f6b7a;
 }

 .term-description>div>div {
     margin-bottom: 16px;
 }

 .term-description>div>div:last-child {
     margin-bottom: 0;
 }

 .view-more-btn {
     margin-top: 10px;
 }


 /* First Paragraph Highlight */
 .term-description p:first-child {
     font-size: 18px;
     font-weight: 600;
     color: #1e293b;
 }

 /* Limit content height */
 .short-content {
     max-height: 120px;
     overflow: hidden;
     position: relative;
     transition: max-height 0.4s ease;
 }

 /* Fade effect */
 .short-content::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 60px;
     background: linear-gradient(to bottom, transparent, #f8fafc);
 }

 /* Expanded state */
 .short-content.expanded {
     max-height: 1000px;
 }

 .short-content.expanded::after {
     display: none;
 }

 /* View More Button */
 .view-more-btn {
     background: none;
     border: none;
     color: #2563eb;
     font-weight: 600;
     cursor: pointer;
     padding: 0;
     margin-top: 10px;
     font-size: 15px;
 }

 /* Article Count Badge */
 .article-count {
     display: inline-block;
     margin-top: 15px;
     padding: 8px 20px;
     background: #ffffff;
     border: 1px solid #dbe3ea;
     border-radius: 50px;
     font-size: 14px;
     font-weight: 600;
     color: #2563eb;
 }

 @media (max-width: 768px) {

     .cd-archive-head1 {
         padding: 25px 20px;
         margin: 0 12px 30px;
         border-radius: 18px;
     }

     /* Logo inline with title */
     .archive-logo {
         position: static;
         text-align: left;
         margin-bottom: 10px;
     }

     .archive-logo img {
         width: 42px;
     }

     /* Title */
     .cd-archive-head1 h1 {
         font-size: 32px;
         margin-bottom: 15px;
     }

     /* Description */
     .term-description {
         font-size: 15px;
         line-height: 1.7;
     }

     .term-description p:first-child {
         font-size: 17px;
     }

     .short-content {
         max-height: 110px;
     }

     .article-count {
         margin-top: 20px;
         font-size: 13px;
         padding: 7px 16px;
     }
 }

 .title-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 15px;
 }

 @media (max-width:768px) {
     .title-row {
         align-items: center;
     }

     .archive-logo img {
         width: 100px;
     }
 }



 /* ra related silder mobile view */
 /* Mobile view only */
 @media (max-width: 767px) {
     .ra-content {
         padding: 5px !important;
     }
 }


 .cd-article-card h3 {
     font-size: 17px;
     font-weight: 700;
     line-height: 1.35;
     margin-bottom: 14px;
     font-style: normal;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
     margin-top: 5px;

 }

 /* 16-02-2026 */
 partner-rating strong {
     font-size: 13px;
 }

 .cd-author-box img.user-verified-icon {
     margin-top: 5px;
 }

 .collapse-box-content a {
     color: #584188;
 }
