* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter 18pt';
}

:root {
    --primary-color: #131720;
    --secondary-color: #07BDD5;
    --black-color: #000;
    --white-color: #fff;
    --text-color: #676F7E;
    --orange-color: #f59f0b;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: var(--body-font);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* height: 100%; */
    /* overflow-x: hidden; */
    background: var(--white-color);

}

p {
    padding: 0;
    margin: 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1 {
    color: var(--primary-color);
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn:focus {
    box-shadow: none;
}

.butn {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #0A0C10;
    background-color: var(--secondary-color);
    padding: 14px 21px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.butn:hover {
    color: #0A0C10;
    background-color: rgba(7, 189, 213, 0.9);
}

.title-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.title-head h2 {
    font-size: 30px;
    line-height: 123%;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.title-head p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color);
}

.view-btn {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary-color);
    border-radius: 6px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.view-btn:hover {
    color: var(--primary-color);
    background-color: var(--orange-color);
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 120%;
    color: var(--primary-color);
}

.header {
    background: var(--white-color);
}

.container {
    max-width: 1580px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.bootom-navigation .nav {
    justify-content: center;
    padding: 26px 0;
}

.nav ul {
    display: flex;
    gap: 42px;
}

.bootom-navigation .nav li {
    padding: 7px 0;
}

.nav a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--secondary-color);
}

.top-header {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 24px 0 14px;
}

.site-logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.site-logo a img {
    max-width: 320px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    width: max-content;
}

.signin {
    font-size: 16px;
    line-height: 20px;
    padding: 8px 12px;
    color: var(--primary-color);
    border-radius: 6px;
    background: transparent;
    transition: 0.3s ease;
}

.signin:hover {
    color: var(--primary-color);
    background: var(--orange-color);
}

.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(2) {
    margin: 5px 0;
}

/* Active state (turn into X) */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Marquee Swiper */
.bitcoin-slides {
    padding: 12px 0;
    background: rgba(232, 234, 238, 0.5);
    border-top: 1px solid #E2E4E9;
    border-bottom: 1px solid #E2E4E9;
}

.bitcoins-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    border-right: 1px solid #E2E4E9;
}

.coin {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--primary-color);
}

.bit-price {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text-color);
}

.bit-profit {
    color: #16A249;
}

.bit-profit,
.bit-loss {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.bit-loss {
    color: #EF4343;
}

.marqueeSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 60px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.news-sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 456px;
    border: 1px solid #E2E4E9;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 2px 8px 0px #0000000F;
    backdrop-filter: blur(12px);
    background: #FFFFFFCC;
}

.news-sidebar h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 190%;
    color: var(--primary-color);
}

.sidebar-newscard,
.research-card {
    padding: 28px 20px 24px;
}

.coin-tag {
    display: inline-block;
    border: 1px solid #E2E4E9;
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.sidebar-newscard h4 a,
.research-card h4 a {
    font-size: 18px;
    font-weight: 500;
    line-height: 175%;
    color: var(--primary-color);
    margin: 12px 0 15px;
    display: block;
    transition: color 0.3s ease;
}

.sidebar-newscard h4 a:hover,
.tranding-block:hover h4 a {
    color: var(--secondary-color);
}

.time-published {
    display: flex;
    align-items: center;
    gap: 6px;
}

.time-published span {
    font-size: 14px;
    font-weight: 400;
    color: #676F7E;
    line-height: 100%;
}

.newscontent-wrap {
    width: calc(100% - 472px);
}

.feature_news {
    position: relative;
    border-radius: 20px;
}

.feature_news:before {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    border-radius: 20px;
}

.feature_news img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.feanews-info {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
    z-index: 2;
}

.feanews-info .coin-tag {
    background: var(--secondary-color);
    color: #0A0C10;
    border-color: var(--secondary-color);
    font-size: 12px;
    padding: 0px 10px;
}

.feanews-info h2 a {
    font-size: 35px;
    font-weight: 700;
    line-height: 38px;
    color: var(--white-color);
    margin-top: 15px;
    display: block;
}

.feanews-info p {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
    margin: 12px 0 15px;
}

.editor-block {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
}

.editor-block>span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.editor-block .time-published img {
    filter: brightness(1) invert(1);
    max-width: 14px;
}

.editor-block .time-published span {
    color: rgba(255, 255, 255, 0.8);
}

.breaking-newswrap {
    display: flex;
    gap: 1rem;
}

.feanews-block,
.right_sidebar {
    width: 100%;
    max-width: 456px;
}

.right_sidebar {
    position: sticky;
    top: 0;
    height: 100%;
}

.feanews-block .feanews_cards {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px;
}

.feanews_desc .coin-tag {
    font-size: 12px;
    padding: 0px 10px;
}

.fearelated_img {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 13px;
    overflow: hidden;
}

.fearelated_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feanews_desc h2 a {
    font-size: 16.58px;
    font-weight: 600;
    line-height: 135%;
    color: var(--primary-color);
    margin: 8.5px 0;
}

.feanews-block .feanews_cards {
    margin-bottom: 16px;
}

.feanews_cards,
.feanews_cards img,
.feanews_cards h2 a {
    transition: all 0.3s ease;
}

.feanews_cards:hover {
    background: #f3f4f6;
}

.feanews_cards:hover .fearelated_img img {
    transform: scale(1.1);
}

.feanews_cards:hover .feanews_desc h2 a {
    color: var(--secondary-color);
}

.allbreaking_news {
    padding-left: 13px;
}

.allbreaking_news a {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--secondary-color);
}

.allbreaking_news a:hover {
    text-decoration: underline;
}

.newsbottom_wrap {
    margin-top: 68px;
    display: flex;
    gap: 1rem;
}

.latestnews-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    box-shadow: 0px 4px 12px 0px #1317200A;
    box-shadow: 0px 1px 3px 0px #1317200F;
    border-radius: 12px;
    overflow: hidden;
}

.latestnews-card:hover {
    box-shadow: 0px 8px 24px 0px #1317200F;
    box-shadow: 0px 4px 12px 0px #1317201A;
}

.latestnews-img {
    height: 275px;
    overflow: hidden;
}

.latestnews-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latestnews-desc {
    padding: 22px 20px 20px;
}

.smallcoin-tag {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 3px 6px;
    background: #E8EAEE;
    border-radius: 10px;
    width: max-content;
}

.latestnews-desc h2 a {
    font-size: 18px;
    font-weight: 600;
    line-height: 125%;
    margin: 12px 0 8px;
}

.latestnews-card:hover h2 a {
    color: var(--secondary-color);
}

.latestnews-desc p {
    font-size: 14px;
    font-weight: 400;
    line-height: 143%;
    color: var(--text-color);
}

.editor-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 2px;
}

.editor-wrap p {
    font-weight: 500;
    color: var(--primary-color);
}

.latestnews-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 100px;
}

.price_prediction {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.predictprice-card {
    display: flex;
    align-items: center;
    padding: 15px 14px;
    gap: 13px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    /* box-shadow: 0px 3.44px 10.33px 0px #1317200A; */
    box-shadow: 0px 0.86px 2.58px 0px #1317200F;
    border-radius: 10px;
}

.pricepredict-img {
    width: 96px;
    min-width: 96px;
    height: 96px;
    border-radius: 7px;
    overflow: hidden;
}

.pricepredict-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.targets-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
}

.targets_block {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 400;
    line-height: 110%;
    color: #07BDD5;
}

.predict_pricedesc h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: var(--primary-color);
    margin: 7px 0;
}

.right_sidecard {
    border-radius: 20px;
    border: 1.63px solid #E2E4E9;
    padding: 34px;
}

.daily-digesthead {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
}

.right_sidecard h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 165%;
    color: var(--primary-color);
}

.right_sidecard>p {
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    color: var(--text-color);
}

.subscribe-form {
    margin-top: 22px;
}

.subscribe-form input[type="text"] {
    border: 1px solid #E2E4E9;
    background: #F6F7F9;
    padding: 15px 21px;
    border-radius: 10px;
    width: 100%;
}

.form-wrap .wpcf7-not-valid-tip {
    text-align: left;
    font-size: 15px;
    margin-top: 5px;
}

button.submit {
    width: 100%;
    background: #07BDD5;
    border-radius: 10px;
    border: 0;
    padding: 15px;
    margin-top: 13px;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
}

button.submit:hover {
    background: rgba(7, 189, 213, 0.9);
}

/* CF7 form inside Daily Digest – match .subscribe-form design */
.subscribe-form .wpcf7 {
    margin-top: 0;
}

.subscribe-form .wpcf7 form {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.subscribe-form .wpcf7 input[type="text"],
.subscribe-form .wpcf7 input[type="email"] {
    border: 1px solid #E2E4E9;
    background: #F6F7F9;
    padding: 15px 21px;
    border-radius: 10px;
    width: 100%;
}

.subscribe-form .wpcf7 input[type="submit"],
.subscribe-form .wpcf7 .wpcf7-submit {
    width: 100%;
    background: #07BDD5;
    border-radius: 10px;
    border: 0;
    padding: 15px;
    margin-top: 13px;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    cursor: pointer;
}

.subscribe-form .wpcf7 input[type="submit"]:hover,
.subscribe-form .wpcf7 .wpcf7-submit:hover {
    background: rgba(7, 189, 213, 0.9);
}

.subscribe-form .wpcf7 .wpcf7-not-valid {
    border-color: #c00;
}

.subscribe-form .wpcf7 .wpcf7-response-output {
    margin: 10px 0 0;
    font-size: 14px;
}

/* CF7 form inside Stay Ahead – match .newsletter-form design */
.newsletter-form .wpcf7 form {
    /* display: flex;
    justify-content: center;
    gap: 8px; */
    margin: 0;
}

.newsletter-form .form-wrap {
    display: flex;
    width: 100%;
    gap: 8px;
}

.newsletter-form .subs-btn p {
    height: 51.59px;
}

.newsletter-form .wpcf7 input[type="text"],
.newsletter-form .wpcf7 input[type="email"] {
    font-size: 14px;
    font-weight: 400;
    padding: 15px 13px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(226, 228, 233, 0.5);
    border-radius: 6px;
    color: #fff;
}

.newsletter-form .wpcf7 input[type="submit"],
.newsletter-form .wpcf7 .wpcf7-submit {
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}

.newsletter-form .wpcf7 input[type="submit"]:hover,
.newsletter-form .wpcf7 .wpcf7-submit:hover {
    background: rgba(7, 189, 213, 0.9);
}

.newsletter-form .wpcf7 .wpcf7-not-valid {
    border-color: rgba(255, 0, 0, 0.6);
}

.newsletter-form .wpcf7 .wpcf7-response-output {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.pdf-wrap {
    display: flex;
    align-items: center;
    gap: 13px;
}

.researc-wrap {
    padding: 20px;
    margin-top: 40px;
}

.research-card h4 a {
    line-height: 155%;
}

.trending_wrapper {
    margin-top: 100px;
    padding: 80px 0;
    background: rgba(232, 234, 238, 0.3);
}

.container-s {
    max-width: 907px;
    margin: 0 auto;
}

.trending-head {
    margin: 20px 0;
}

.trending-head ul {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.trending-head ul li a {
    font-size: 12px;
    font-weight: 700;
    line-height: 17px;
    color: var(--primary-color);
    background: #F2F2F2;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.trending-head ul li a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.inner-tending {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
}

.tranding-block {
    padding: 13px;
    width: calc(50% - 20px);
    display: flex;
    gap: 14px;
}

.numbers {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(7, 189, 213, 0.1);
    border-radius: 50%;
}


.tending-desc h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    color: var(--primary-color);
}

.trend-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.market-stats {
    background: #F2F2F2;
    border-radius: 10px;
    padding: 27px 20px 20px;
    margin-top: 20px;
}

.market-stats h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
    color: var(--primary-color);
    margin-bottom: 13px;
}

.market-stats ul li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color);
    margin-bottom: 13px;
}

.market-stats ul li:last-child {
    margin-bottom: 0;
}

.market-stats ul li span {
    font-weight: 600;
    color: var(--primary-color);
}

.category_wrapper {
    padding-top: 100px;
}

.inner-category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.category-card {
    padding: 24px;
    border: 1px solid #E2E4E9;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px #0000000D;
}

.coin-category {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-category {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.category-card:hover {
    box-shadow: 0px 4px 6px -4px #0000001A;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.category-card p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 16px 0;
}

.category-card a {
    color: var(--secondary-color);
    opacity: 0;
    visibility: hidden;
}

.category-card:hover a {
    opacity: 1;
    visibility: visible;
}

/* Market Section */
.market-section {
    padding: 100px 0;
}

.market-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    overflow: auto;
}

.market-card td {
    white-space: nowrap;
}

.market-section .view-btn {
    border: 1px solid #E2E4E9;
    background: #F6F7F9;
}

.market-section .view-btn:hover {
    background: var(--orange-color);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(237, 239, 242, 0.5);
}

th {
    text-align: left;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 17px;
    color: #676F7E;
    font-weight: 500;
    white-space: nowrap;
}

td {
    padding: 16px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: var(--text-color);
}

tbody tr td:nth-child(3) {
    color: var(--primary-color);
}

.coin {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin div {
    display: flex;
    flex-direction: column;
}

.coin span {
    font-size: 12px;
    color: #888;
}

.coin-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E8EAEE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin div p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.green {
    color: #16a34a;
    font-weight: 500;
}

.red {
    color: #dc2626;
    font-weight: 500;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(102.68deg, #0F131A 0%, #1B2232 50%, #0F131A 100%);
    padding: 64px 0;
    text-align: center;
    color: var(--white-color);
}

.newsletter-container {
    max-width: 675px;
    margin: auto;
}

.mail-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(7, 189, 213, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.newsletter-section h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 112%;
    margin-bottom: 16px;
    color: var(--white-color);
}

.subtitle {
    color: #E3E3E3;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 32px;
}

.newsletter-form,
.newsletter-form form p {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    position: relative;
}

.newsletter-form form span.wpcf7-spinner {
    position: absolute;
    right: 5px;
    top: 14px;
    margin: 0;
}

.newsletter-form form input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: max-content;
    font-size: 16px;
}

.newsletter-form form span.wpcf7-form-control-wrap {
    width: 100%;
}

.newsletter-form .wpcf7 {
    width: 100%;
}

.newsletter-form input {
    font-size: 14px;
    font-weight: 400;
    padding: 15px 13px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(226, 228, 233, 0.5);
    border-radius: 6px;
    color: #fff;
}

.newsletter-form button {
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 500;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: rgba(7, 189, 213, 0.9);
}

.subs-btn {
    position: relative;
}

.subs-btn .wpcf7-spinner {
    position: absolute;
    top: 32px;
    right: 12px;
    margin: 0;
}


.policy {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #676F7E;
    margin-top: 12px;
}

.policy a {
    color: var(--secondary-color);
}

.policy a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 64px 0;
}

.inner-footer {
    display: flex;
    justify-content: space-between;
    gap: 55px;
}

.footer-about {
    width: 40%;
}

.footer-logo img {
    max-width: 220px;
}

.footer-about p {
    color: #676F7E;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 20px 0;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials span {
    width: 40px;
    height: 40px;
    background: #E8EAEE;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.socials span:hover {
    background: var(--secondary-color);
}

.socials span a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.footer-links {
    display: flex;
    gap: 45px;
    width: 60%;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-links a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #676F7E;
    text-decoration: none;
    margin-bottom: 13px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #E2E4E9;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #676F7E;
}

/* Single post */
.single-post-content {
    margin-bottom: 60px;
}

.single-post-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 38px;
    color: var(--primary-color);
    margin: 15px 0 20px;
    display: block;
}

.single-post-content .editor-block .time-published span,
.single-post-content .editor-block>span {
    color: var(--text-color);
}

.single-post-thumb {
    margin: 15px 0 35px;
    border-radius: 16px;
    overflow: hidden;
}

.single-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post .newsbottom_wrap {
    margin-top: 0;
}

/* Policy Content */
.content_wrapper {
    padding: 50px 0 50px;
}

.content_wrapper h1 {
    margin-bottom: 30px;
}

.content_wrapper h2,
.content_wrapper h3,
.content_wrapper h4 {
    color: var(--primary-color);
    font-size: 28px;
    margin: 30px 0 10px
}

.category .heading-content p br {
    display: none;
}

/* Responsive */

@media (max-width: 1580px) {
    .site-logo a img {
        max-width: 300px;
    }

    .bootom-navigation .nav {
        padding: 20px 0;
    }

    .news-sidebar {
        max-width: 350px;
    }

    .newscontent-wrap {
        width: calc(100% - 366px);
    }

    .sidebar-newscard h4 a,
    .research-card h4 a {
        font-size: 16px;
        line-height: 173%;
    }

    .sidebar-newscard,
    .research-card {
        padding: 25px 16px 20px;
    }

    .feanews-block,
    .right_sidebar {
        width: 100%;
        max-width: 350px;
    }

    .fearelated_img {
        width: 85px;
        height: 85px;
        min-width: 85px;
    }

    .feanews_desc h2 a {
        font-size: 16px;
        margin: 6.5px 0;
    }

    .feanews-block .feanews_cards {
        margin-bottom: 10px;
    }

    .allbreaking_news a {
        font-size: 15px;
    }

    .right_sidecard {
        padding: 25px 20px;
    }

    .right_sidecard>p {
        font-size: 16px;
    }

    .daily-digesthead {
        margin-bottom: 20px;
    }

    .date-published {
        font-size: 14px;
    }

    .right_sidecard h2 {
        font-size: 20px;
    }

    .feanews-info h2 a,
    .single-post-title {
        font-size: 30px;
    }

    .feanews-info p {
        font-size: 16px;
    }

    .feanews-info {
        right: 22px;
        left: 22px;
    }

    .latestnews-img {
        height: 225px;
    }

    .latestnews-desc {
        padding: 22px 16px 20px;
    }

    .pricepredict-img {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }

    .predict_pricedesc h2 {
        font-size: 16px;
    }

    .editor-wrap p {
        font-size: 15px;
    }

    .price_prediction {
        gap: 14px;
    }

    .inner-tending {
        gap: 14px 30px;
    }

    .tranding-block {
        width: calc(50% - 15px);
    }

    .coin-category {
        font-size: 18px;
    }

    .category-card p {
        font-size: 16px;
    }

    .single-post .newscontent-wrap {
        width: calc(100% - 366px);
    }

    .footer-links {
        gap: 30px;
    }

}

@media (max-width: 1440px) {
    .container-s {
        max-width: 700px;
        margin: 0 auto;
    }

    .main-wrapper {
        padding-top: 45px;
    }

    .news-sidebar h2 {
        font-size: 22px;
        margin: 0;
    }

    .coin-tag {
        font-size: 14px;
    }

    .category-card p {
        font-size: 15px;
        line-height: 24px;
    }

    .category-card a {
        font-size: 14px;
    }

    .title-head h2 {
        font-size: 28px;
    }

    .newsletter-section h2 {
        font-size: 34px;
    }

    .inner-category {
        gap: 20px;
    }
}

@media (max-width: 1366px) {
    .site-logo a img {
        max-width: 280px;
    }

    .nav ul {
        gap: 32px;
    }

    .news-sidebar {
        max-width: 300px;
    }

    .newscontent-wrap {
        width: calc(100% - 316px);
    }

    .news-sidebar {
        padding: 18px 16px;
    }

    .sidebar-newscard,
    .research-card {
        padding: 22px 6px 20px;
    }

    .feanews-block,
    .right_sidebar {
        max-width: 300px;
    }

    .sidebar-newscard h4 a,
    .research-card h4 a {
        margin: 8px 0px 10px;
    }

    .fearelated_img {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .latestnews-img {
        height: 200px;
    }

    .coin {
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .ticker-sym,
    .coin {
        font-size: 14px;
    }

    .footer {
        padding: 64px 0 40px;
    }

    .single-post .newscontent-wrap {
        width: calc(100% - 316px);
    }

    .content_wrapper h2,
    .content_wrapper h3,
    .content_wrapper h4 {
        font-size: 26px;
        margin: 26px 0 8px;
    }
}

@media (max-width: 1180px) {

    .breaking-newswrap,
    .newsbottom_wrap {
        flex-wrap: wrap;
    }

    .feanews-block,
    .right_sidebar {
        max-width: 100%;
    }

    .container-s {
        max-width: 800px;
    }

    .newsletter-section h2 {
        font-size: 30px;
    }

    .subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-links {
        gap: 36px;
    }

    .single-post .main-wrapper {
        flex-wrap: wrap;
    }

    .single-post .latestnews-inner {
        margin-bottom: 45px;
    }

    .right_sidebar {
        position: unset;
    }

}


@media (max-width:900px) {

    .container-s {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .nav {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        display: none;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }

    .nav.active {
        display: block;
        background: #fff;
        z-index: 4;
    }

    .menu-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .main-wrapper {
        padding-top: 45px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    header {
        padding: 16px 0;
    }

    .top-header {
        justify-content: flex-start;
        padding: 0;
    }

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

    .site-logo {
        position: unset;
        transform: unset;
    }

    .news-sidebar {
        max-width: 100%;
    }

    .newscontent-wrap {
        width: 100%;
    }

    .single-post .newscontent-wrap {
        width: 100%;
    }

    .news-sidebar {
        position: unset;
    }
}

@media (max-width: 800px) {
    .inner-footer {
        flex-wrap: wrap;
    }

    .footer-about,
    .footer-links {
        width: 100%;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 25px;
    }

    .footer {
        padding: 64px 0 25px;
    }

}

@media (max-width:768px) {

    .container-s,
    .main-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .menu-toggle {
        width: 24px;
    }

    .menu-toggle span:nth-child(2) {
        margin: 4px 0;
    }

    .nav {
        top: 72px;
    }

    .site-logo a img {
        max-width: 240px;
    }

    .title-head {
        flex-wrap: wrap;
        gap: 20px;
    }

    .title-head h2 {
        font-size: 24px;
    }

    .feanews-info h2 a,
    .single-post-title {
        font-size: 28px;
        line-height: 34px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 30px;
    }

    .price_prediction {
        grid-template-columns: repeat(1, 1fr);
    }

    .tranding-block {
        width: 100%;
    }

    .newsletter-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin: auto;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .single-post .latestnews-inner {
        margin-bottom: 15px;
    }

    .single-post-content {
        margin-bottom: 50px;
    }

    .single-post-thumb {
        margin: 15px 0 25px;
    }

    .content_wrapper h2,
    .content_wrapper h3,
    .content_wrapper h4 {
        font-size: 22px;
        margin: 25px 0 8px;
    }

    .content_wrapper {
        padding: 30px 0 10px;
    }
}

@media (max-width:680px) {
    .title-head h2 {
        font-size: 22px;
    }

    .feanews-info h2 a,
    .single-post-title {
        font-size: 26px;
    }

    .bitcoin-slides {
        padding: 10px 0;
    }

    .feanews-info {
        right: 15px;
        left: 15px;
    }

    .feature_news {
        height: 470px;
    }

    .latestnews-inner,
    .inner-category {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-links>div {
        width: 44%;
    }

    .latestnews-img {
        height: 240px;
    }

    .feanews-block .feanews_cards {
        padding: 13px 0;
    }

    .newsletter-section h2 {
        font-size: 26px;
    }

    .latestnews-inner {
        margin-bottom: 70px;
    }

    .trending_wrapper {
        margin-top: 70px;
        padding: 70px 0;
    }

    .category_wrapper {
        padding-top: 70px;
    }

    .market-section {
        padding: 70px 0;
    }

    .breaking-newswrap,
    .newsbottom_wrap {
        gap: 40px;
    }

    .newsletter-form {
        flex-wrap: wrap;
    }

    .newsletter-form button {
        width: 100%;
    }

    .allbreaking_news {
        padding-left: 0;
    }

    .view-btn,
    .market-section .view-btn {
        background-color: var(--orange-color);
    }

    .category-card a {
        opacity: 1;
        visibility: visible;
    }

    .newsletter-form form p {
        flex-wrap: wrap;
        justify-content: center;
    }

    .newsletter-form form input.wpcf7-form-control.wpcf7-submit.has-spinner {
        width: 100%;
    }

    .newsletter-form form p br {
        display: none;
    }

    .newsletter-form .wpcf7 form,
    .newsletter-form .form-wrap {
        flex-wrap: wrap;
    }

    .subs-btn {
        width: 100%;
    }

    .heading-content {
        width: 100%;
    }

    .footer-logo img {
        max-width: 260px;
    }

}