/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: #FFFFFF;
    --color-red: #E53838;
    --color-dark-grey: #15151B;
    --color-black: #000000;
    --color-grey-text: #747474;
    --color-green: #019365;
    --color-grey-bg: #F4F4F4;
    --color-border: #E6E6E6;
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'Noto Serif', serif;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
}

.header-top {
    background-color: var(--color-dark-grey);
    padding: 8px 0;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
}

.header-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.3);
}

.header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s;
}
.header-nav .nav-item .sub-menu {
    display: none;
}



.nav-item:hover {
    opacity: 0.8;
}

.nav-item.active {
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -53px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--color-red);
}

.nav-item svg {
    width: 16px;
    height: 16px;
}

/* Dropdown Menu Styles */
.nav-item.has-dropdown {
    cursor: pointer;
}

.nav-item .dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 30px;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
}

.header-search {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    background-color: transparent;
}

.header-search svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.header-search input {
    flex: 1;
    border: none;
    background: none;
    color: var(--color-white);
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.awards-btn,
a.awards-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-red);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.awards-btn svg {
    width: 24px;
    height: 24px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Quotes Bar */
.quotes-bar {
    background-color: var(--color-white);
    padding: 6px 0;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
}

.quotes-bar::-webkit-scrollbar {
    display: none;
}

.quotes-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.quote-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    font-size: 14px;
}

.quote-symbol {
    font-weight: 500;
    color: var(--color-black);
}

.quote-price {
    color: var(--color-grey-text);
    font-weight: 400;
}

.quote-change {
    font-weight: 400;
    font-size: 14px;
}

.quote-change.positive {
    color: var(--color-green);
}

.quote-change.negative {
    color: var(--color-red);
}

.quote-change::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 2px;
}

.quote-change.positive::before {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 5px solid var(--color-green);
}

.quote-change.negative::before {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-red);
}

/* Header Banner */
.header-banner {
    padding: 20px 0;
    background-color: var(--color-white);
}

.header-banner .container {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.header-banner a {
    display: block;
}

.header-banner img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.content-left {
    flex: 1;
    max-width: 1060px;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* ============================================
   NEWS PAGE STYLES
   ============================================ */

/* News Page Layout */
.container.news-page {
    position: relative;
    flex-direction: column;
}

.news-header {
    width: 100%;
    margin-bottom: 20px;
}

.container.news-page .content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.container.news-page .content-left {
    width: 1060px;
    max-width: 100%;
    flex-shrink: 0;
}

.container.news-page .sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 194px;
    align-self: flex-start;
}

/* ============================================
   EXPERTS PAGE STYLES
   ============================================ */

/* Experts Page Layout */
.container.experts-page {
    position: relative;
    flex-direction: column;
}

.experts-header {
    width: 100%;
    margin-bottom: 20px;
}

.page-main-wrapper p {
    margin-bottom: 20px;
}
.page-title-section {
    margin-top: 20px;
    position: relative;
}

.page-title-hero {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background-image: url('./165c2233328cb3b0591569ce47634cd7329479a8.png');
    background-size: cover;
    background-position: center;
}

.page-title-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 25.214%, rgba(0, 0, 0, 0.614) 61.393%);
    z-index: 1;
}

.page-title-hero .page-title,
.page-title-hero .page-description,
.page-title-hero .btn-primary {
    position: relative;
    z-index: 2;
}

.page-title-hero .page-title {
    font-size: 40px;
    line-height: 52px;
    color: var(--color-white);
    margin: 0 0 20px;
}

.page-description {
    font-size: 20px;
    line-height: 28px;
    color: var(--color-white);
    margin: 0 0 24px;
    max-width: 512px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius:  8px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #c52a2a;
}
.page-title-hero .btn-primary {
    max-width: 148px;
    display: flex;
    height: 48px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}

.category-filter {
    margin-bottom: 15px;
    gap: 15px;
    display: flex;
    align-items: center;
}
.category-filter a {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.category-filter a.filter-btn.active {
    background: #3e3e3e;
}
/* Filters Section */
.experts-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1060px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group.filter-search {
    flex: 1;
    min-width: 0;
}

.filter-select {
    width: 124px;
    height: 48px;
    padding: 14px;
    border: 1px solid gainsboro;
    border-radius: 8px;
    background-color: var(--color-white);
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 20px;
    color: var(--color-grey-text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23747474' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.filter-input {
    width: 100%;
    height: 48px;
    padding: 14px;
    border: 1px solid gainsboro;
    border-radius: 8px;
    background-color: var(--color-white);
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 20px;
    color: var(--color-grey-text);
}

.filter-input::placeholder {
    color: var(--color-grey-text);
}

.filter-btn {
    width: 73px;
    height: 48px;
    padding: 0 20px;
    background-color: #bcbcbc;
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.filter-btn:hover {
    background-color: #a0a0a0;
}

.container.experts-page .content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.container.experts-page .content-left {
    width: 1060px;
    max-width: 100%;
    flex-shrink: 0;
}

.container.experts-page .sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 194px;
    align-self: flex-start;
}

/* Experts Grid */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.expert-card {
    width: 340px;
    height: 252px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    padding: 16px;
}

.expert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.expert-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    background-color: #f4f4f4;
    color: var(--color-black);
    border-radius: 100px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    width: fit-content;
}

.expert-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--color-black);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.expert-footer {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.expert-avatar {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.expert-name {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--color-black);
    margin: 0;
}

.expert-company {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color-grey-text);
    margin: 0;
}

.expert-time {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--color-grey-text);
    margin-left: auto;
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.load-more-btn {
    width: 100%;
    max-width: 1060px;
    height: 48px;
    padding: 0 20px;
    background-color: #FFEAEA;
    color: var(--color-red);
    border: none;
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.load-more-btn:hover {
    background-color: #ffe0e0;
}

/* ============================================
   REVIEW PAGE STYLES
   ============================================ */

/* Review Page Layout */
.container.review-page {
    position: relative;
    flex-direction: column;
}

.review-header {
    width: 100%;
    margin-bottom: 20px;
}

/* Review Category Filters */
.review-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.review-filter-btn {
    padding: 10px 20px;
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid #e6e6e6;
    border-radius: 100px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.review-filter-btn:hover {
    border-color: var(--color-black);
    background-color: #f4f4f4;
}

.review-filter-btn.active {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.reviews-grid .review-card {
    width: 340px;
    height: 334px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background-color: var(--color-white);
    transition: box-shadow 0.3s, transform 0.3s, opacity 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Featured Review Card - Yellow Border */
.review-card-featured {
    border: 2px solid #F7B500 !important;
    position: relative;
}

.review-card-featured:hover {
    border-color: #E5A800 !important;
    box-shadow: 0 4px 16px rgba(247, 181, 0, 0.3);
}

.review-card-link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.review-card-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-height: 0;
}

.review-header-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6e6e6;
}

.review-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-title {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-black);
    margin: 0;
    flex: 1;
}

.review-description {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
    margin: 0;
    height: 140px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--color-grey-text);
    width: 308px;
}

.container.review-page .content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.container.review-page .content-left {
    width: 1060px;
    max-width: 100%;
    flex-shrink: 0;
}

.container.review-page .sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 194px;
    align-self: flex-start;
}

/* ============================================
   LEARN PAGE STYLES
   ============================================ */

/* Learn Page Layout */
.container.learn-page {
    position: relative;
    flex-direction: column;
}

/* Learn Hero Banner */
.learn-hero-banner {
    width: 1400px;
    max-width: 100%;
    height: 320px;
    background: linear-gradient(to right, rgba(9, 25, 58, 0) 25.321%, #09193a 53.679%);
    background-color: #09193a;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin: 30px 0 40px;
}

.learn-hero-banner::before {
    content: '';
    position: absolute;
    background-image: url('./0a4b5d2d9035f7b1dbe03e5630a345620968b924.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    background-position: center;
    width: 100%;
    height: 320px;
}

.learn-hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 400px;
}

.learn-hero-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    color: var(--color-white);
    margin: 0;
}

.learn-hero-description {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-white);
    margin: 0;
}

/* Learn Main Wrapper */
.learn-main-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Learn Content Wrapper */
.learn-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Learn Categories */
.learn-categories {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.learn-category-btn {
    width: 100%;
    height: 64px;
    padding: 12px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    line-height: 24px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
}

.learn-category-btn:hover {
    border-color: var(--color-black);
    background-color: #f4f4f4;
}

.learn-category-btn.active {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

/* Learn Articles Wrapper - removed, using learn-content-wrapper instead */

/* Learn Articles Grid */
.learn-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Learn Article Cards */
.learn-article-card {
    height: 252px;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.learn-article-card-image {
    border: none;
    justify-content: flex-end;
    align-items: flex-start;
}

.learn-article-card-image a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;

}

.learn-article-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease;
}

.learn-article-card-image:hover img {
    transform: scale(1.05);
}

.learn-article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.learn-article-card-image:hover .learn-article-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%);
}

/* Learn article info block with hover effect */
.learn-article-info {
    position: relative;
    z-index: 2;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.learn-article-info .learn-article-title {
    margin: 0;
    transition: transform 0.4s ease;
}

.learn-article-excerpt {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.learn-article-card-image:hover .learn-article-excerpt {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

.learn-article-card-text {
    border: 1px solid #e6e6e6;
    background-color: var(--color-white);
    justify-content: flex-start;
}

.learn-article-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--color-white);
    margin: 0;
    position: relative;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.learn-article-card-text .learn-article-title {
    color: var(--color-black);
}

.learn-article-description {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-grey-text);
    margin: 0;
    height: 120px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Learn Banner */
.learn-banner {
    width: 100%;
    aspect-ratio: 1060 / 162;
    border-radius: 12px;
    overflow: hidden;
}

.learn-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container.learn-page .learn-main-wrapper .sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 194px;
    align-self: flex-start;
}

.learn-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.learn-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.learn-pagination .page-numbers:hover {
    border-color: #E53838;
    color: #E53838;
}

.learn-pagination .page-numbers.current {
    background: #E53838;
    border-color: #E53838;
    color: #fff;
}

/* ============================================
   INDEX PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-card {
    flex: 1;
    position: relative;
    height: 396px;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide > a {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

.hero-slide img,
.hero-slide > a img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.hero-slide:hover img,
.hero-slide > a:hover img {
    filter: grayscale(0%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 21, 27, 0.3) 31.48%, rgba(21, 21, 27, 0.8) 70.9%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide .hero-badge,
.hero-slide .hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    width: fit-content;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    color: var(--color-white);
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-date {
    color: var(--color-white);
    font-size: 14px;
}

.hero-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    gap: 4px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s;
}

.carousel-dots .dot.active {
    background-color: var(--color-white);
}

/* Editor's Choice */
.editors-choice {
    width: 430px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-badge {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-red);
}

.choice-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choice-item {
    display: flex;
    gap: 16px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--color-border);
}

.choice-item:last-child {
    border-bottom: none;
}

.choice-item img {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.choice-item:hover img {
    filter: grayscale(0%);
}

.choice-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.choice-content h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    color: var(--color-black);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.choice-date {
    font-size: 14px;
    color: var(--color-grey-text);
}

/* Company News Section */
.company-news-section,
.review-section,
.learn-section {
    background-color: var(--color-dark-grey);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.company-news-section .section-header,
.review-section .section-header,
.learn-section .section-header {
    margin-bottom: 16px;
}

.company-news-section .section-header h2,
.review-section .section-header h2,
.learn-section .section-header h2 {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.company-news-section .section-header h2 a,
.review-section .section-header h2 a,
.learn-section .section-header h2 a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.company-news-section .section-header h2 a:hover,
.review-section .section-header h2 a:hover,
.learn-section .section-header h2 a:hover {
    opacity: 0.8;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-controls .carousel-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
}

.company-news-carousel,
.review-carousel,
.learn-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.company-news-carousel::-webkit-scrollbar,
.review-carousel::-webkit-scrollbar,
.learn-carousel::-webkit-scrollbar {
    display: none;
}

.news-card,
.review-card,
.learn-card {
    min-width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.news-card-image,
.review-card-image,
.learn-card-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.news-card:hover .news-card-image,
.review-card:hover .review-card-image,
.learn-card:hover .learn-card-image,
.news-card > a:hover .news-card-image,
.review-card > a:hover .review-card-image,
.learn-card > a:hover .learn-card-image {
    filter: grayscale(0%);
}

.news-card-image img,
.review-card-image img,
.learn-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Clickable image links in cards */
.news-card > a,
.review-card > a,
.learn-card > a {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
}

.news-card > a .news-card-image,
.review-card > a .review-card-image,
.learn-card > a .learn-card-image {
    position: absolute;
    inset: 0;
}

.news-card::before,
.review-carousel .review-card::before,
.learn-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 43%, rgba(0, 0, 0, 0.6) 73%);
    z-index: 2;
    pointer-events: none;
}

.news-card h3,
.review-carousel .review-card h3,
.learn-card h3 {
    position: relative;
    z-index: 5;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--color-white);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   COMMON COMPONENTS (used across pages)
   ============================================ */

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.news-card-large {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.news-card-large:hover .news-image img {
    filter: grayscale(0%);
}

.news-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 14px;
}

.news-tag.exclusive,
.news-tag-exclusive {
    background-color: var(--color-red);
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.news-info {
    padding: 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-info h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: var(--color-black);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px;
}

.news-time {
    font-size: 14px;
    color: var(--color-grey-text);
}

/* Large Banner */
.large-banner {
    width: 100%;
    height: 162px;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0;
}

.large-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar */
.sidebar-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.sidebar-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: var(--color-black);
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-red);
    flex-shrink: 0;
}

.sidebar-section-header h3 {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-white);
    margin: 0;
}

.sidebar-section-header h3 a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.sidebar-section-header h3 a:hover {
    opacity: 0.8;
}

.choice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.experts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.expert-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.expert-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.expert-item > img,
.expert-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.expert-avatar {
    background-color: var(--color-grey-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
}

.expert-item > div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.expert-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.expert-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
}

.expert-info p {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-grey-text);
}

.expert-quote {
    font-size: 14px;
    color: var(--color-black);
    line-height: 20px;
}

/* Exclusive Section in Sidebar */
.exclusive-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.exclusive-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.exclusive-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.exclusive-item .exclusive-image {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.exclusive-item .exclusive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exclusive-item .exclusive-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exclusive-item .exclusive-info h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    color: var(--color-black);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 64px;
}

.exclusive-item .exclusive-info span {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--color-grey-text);
}

.press-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.press-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.press-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.press-item h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    color: var(--color-black);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-grey-text);
}

.press-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--color-grey-text);
}

/* Footer */
.footer {
    background-color: var(--color-dark-grey);
    margin-top: 80px;
}

.footer-top {
    padding: 40px 0;
}

.footer-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 260px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.footer-logo img {
    height: 32px;
    width: auto;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-right {
    display: flex;

    gap: 32px;
    align-items: flex-end;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 0;
}

.footer-bottom .footer-container {
    padding-top: 0;
    padding-bottom: 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links-bottom a:hover {
    color: var(--color-white);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 14px;
}

.breadcrumb-link {
    color: var(--color-grey-text);
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: var(--color-black);
}

.breadcrumb-separator {
    width: 4px;
    height: 4px;
    background-color: var(--color-grey-text);
    border-radius: 50%;
    flex-shrink: 0;
}

.breadcrumb-current {
    color: var(--color-black);
}

/* Page Title */
.page-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 600;
    line-height: 44px;
    color: var(--color-black);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: var(--color-grey-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--color-dark-grey);
}

.scroll-top:hover svg path {
    stroke: var(--color-white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Header Mobile Icons */
.header-mobile-icons {
    display: none;
}

.header-search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header-search-btn svg {
    width: 24px;
    height: 24px;
}

.awards-btn-mobile {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Responsive Styles */
@media (max-width: 1920px) {
    .container {
        padding: 0;
    }
    
    .footer-container {
        padding: 0 0px;
    }
}

@media (max-width: 1600px) {
    .container {
        padding: 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 1440px) {
    .container {
        padding: 0 20px;
    }
    .content-left {
        max-width: 70%;
    }
    
    .footer-container {
        padding: 0 80px;
    }
    
    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 1240px) {
    .container {
        padding: 0 20px;
    }
    .social-icons, .header-nav {
        display: none;
    }


   .mobile-menu-toggle {
        display: flex;
        order: 3;
        width: 40px;
        height: 40px;
    }

    .header-container {
        justify-content: space-between;
    }


    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        padding: 0 40px;
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    /* Hide sidebar on tablet */
    .sidebar {
        display: none;
    }

    /* Content takes full width */
    .content-left {
        width: 100%;
        max-width: 100%;
    }

    /* Hero section full width */
    .hero-section {
        flex-direction: column;
        gap: 24px;
    }

    .hero-card {
        width: 100%;
        max-width: 100%;
    }

    .editors-choice {
        width: 100%;
        max-width: 100%;
    }

    /* Carousels */
    .company-news-section,
    .review-section,
    .learn-section {
        width: 100%;
        max-width: 100%;
    }

    .news-card,
    .review-card,
    .learn-card {
        min-width: 280px;
        width: 280px;
    }

    /* News grid */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Large banners hide on tablet */
    .large-banner {
        display: none;
    }

    /* Article page adjustments */
    .article-main-wrapper {
        flex-direction: column;
    }

    .articles-infinite-container {
        width: 100%;
        max-width: 100%;
    }

    /* Archive pages - hide sidebar, full width content */
    .container.news-page .content-wrapper,
    .container.review-page .content-wrapper,
    .container.experts-page .content-wrapper {
        flex-direction: column;
    }

    .container.news-page .content-left,
    .container.review-page .content-left,
    .container.experts-page .content-left {
        width: 100%;
        max-width: 100%;
    }

    .container.news-page .sidebar,
    .container.review-page .sidebar,
    .container.experts-page .sidebar {
        display: none;
    }

    /* Article single page - hide sidebar */
    .container.article-page .sidebar {
        display: none;
    }

    .container.article-page {
        padding: 30px 20px;
    }

    .article-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-container {
        padding: 8px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .header-divider {
        display: none;
    }
    
    .header-nav {
        display: none;
    }

    .header-nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-dark-grey);
        flex-direction: column;
        padding: 20px 16px;
        gap: 20px;
        z-index: 1000;
    }

    .header-nav.active .nav-item {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-nav.active .nav-item:last-child {
        border-bottom: none;
    }

    /* Mobile Dropdown Styles */
    .header-nav.active .nav-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav.active .nav-item > a {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .header-nav.active .nav-item.has-dropdown > a {
        justify-content: space-between;
    }

    .header-nav.active .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        background: transparent;
        box-shadow: none;
        padding: 10px 0 0 20px;
        display: none;
        width: 100%;
    }

    .header-nav.active .nav-item.has-dropdown.open .nav-dropdown {
        display: block;
    }

    .header-nav.active .nav-dropdown .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        padding: 8px 0;
    }

    .header-nav.active .nav-dropdown .dropdown-item:hover {
        background-color: transparent;
        color: #fff;
    }

    .header-nav.active .nav-item.has-dropdown .dropdown-arrow {
        margin-left: auto;
    }

    .header-nav.active .nav-item.has-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .header-mobile-icons {
        display: flex;
        gap: 16px;
        align-items: center;
        order: 2;
    }

    .header-search {
        display: none;
    }

    .header-right {
        gap: 0;
        order: 2;
    }

    .header-right .social-icons {
        display: none;
    }

    .header-right .logout-btn {
        display: none !important;
    }

    .awards-btn {
        display: none;
    }

    .awards-btn-mobile {
        display: flex;
    }
    
    /* Quotes Bar Mobile */
    .quotes-bar {
        padding: 6px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .quote-item {
        padding: 0 8px;
        font-size: 14px;
    }
    
    /* Main Content Mobile */
    .container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
        flex-direction: column;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .content-left {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .hero-card {
        height: 320px;
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 22px;
        line-height: 28px;
        font-weight: 600;
    }
    
    /* Editor's Choice Mobile */
    .editors-choice {
        width: 100%;
        max-width:  100%;
    }
    
    .choice-item {
        gap: 12px;
        padding-bottom: 20px;
    }
    
    .choice-item img {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }
    
    .choice-content {
        flex: 1;
    }
    
    .choice-content h3 {
        font-size: 16px;
        line-height: 21px;
        height: 64px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Company News Mobile */
    .company-news-section,
    .review-section,
    .learn-section {
        padding: 16px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 16px;
        border-radius: 12px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .carousel-controls {
        display: none;
    }

    .company-news-carousel,
    .review-carousel,
    .learn-carousel {
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }

    .company-news-carousel::-webkit-scrollbar,
    .review-carousel::-webkit-scrollbar,
    .learn-carousel::-webkit-scrollbar {
        display: none;
    }

    .news-card,
    .review-card,
    .learn-card {
        min-width: 220px;
        height: 180px;
        width: 220px;
        flex-shrink: 0;
    }

    .news-card h3,
    .review-card h3,
    .learn-card h3 {
        font-size: 14px;
        line-height: 18px;
        padding: 8px 12px;
    }
    .hero-card {
        min-height: 340px;
    }
    /* News Grid Mobile */
    .news-grid {
    
        gap: 12px;
        width: 100%;
        max-width:100%;
        margin: 0 auto;
    }
    
    .news-card-large {
        width: 100%;
        max-width: 340px;
    }
    
    .news-image {
        height: 200px;
    }
    
    /* Sidebar Mobile */
    .sidebar {
        display: none;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        order: 3;
    }
    
    .sidebar-images {
        display: flex;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .sidebar-images::-webkit-scrollbar {
        display: none;
    }
    
    .sidebar-image {
        width: 248px;
        height: 263px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    /* Experts Mobile - Hide */
    .sidebar-section {
        display: none;
    }
    
    .experts-list {
        display: none;
    }
    
    .expert-item {
        display: none;
    }
    
    /* Press Releases Mobile - Hide */
    .press-list {
        display: none;
    }
    
    .press-item {
        display: none;
    }
    
    /* Footer Mobile */
    .footer {
        width: 100%;

        margin: 0 auto;
    }
    
    .footer-container {
        padding: 20px 10px;
        flex-direction: column;
        gap: 24px;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }
    
    .footer-logo img {
        height: 32px;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
    }
    
    .footer-right .awards-btn {
        display: flex;
        gap: 6px;
        padding: 8px 16px;
        border: 2px solid var(--color-white);
        border-radius: 100px;
        flex: 1;
        justify-content: center;
    }
    
    .footer-right .awards-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-right .awards-btn span {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: var(--color-red);
    }
    
    .footer-right .social-icons {
        display: flex;
        gap: 8px;
        width: 184px;
    }
    
    .footer-bottom {
        padding: 16px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }
    
    .footer-bottom p {
        width: 100%;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .footer-links-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        width: 100%;
    }
    
    .footer-links-bottom a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    .large-banner {
            height: 122px;
            width: 100%;
            max-width: 360px;
            margin: 20px auto;
            border-radius: 12px;
            overflow: hidden;
        }

    .large-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Scroll to Top Mobile */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 567px) {

     .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card-large {
        max-width: 100%;
    }
    .container {
        padding: 0 8px;
    }
    
    .hero-card {
        height: 320px;
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 22px;
        line-height: 28px;
    }
    
    .choice-item {
        gap: 12px;
    }
    
    .choice-item img {
        width: 64px;
        height: 64px;
    }
    
    .news-card,
    .review-card,
    .learn-card {
        min-width: 200px;
        height: 160px;
        width: 200px;
    }

    .news-card h3,
    .review-carousel .review-card h3,
    .learn-card h3 {
        font-size: 13px;
        line-height: 18px;
        padding: 6px 10px;
    }

    .company-news-section,
    .review-section,
    .learn-section {
        padding: 12px;
        margin: 0 auto 12px;
    }

    .company-news-carousel,
    .review-carousel,
    .learn-carousel {
        margin: 0 -12px;
        padding: 0 12px;
    }

    .sidebar-image {
        width: 200px;
        height: 220px;
    }
    
    /* Experts Page Mobile */
    .experts-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        max-width: 100%;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-select,
    .filter-input {
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .expert-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .page-title-section {
        margin-bottom: 24px;
    }
    
    .page-description {
        font-size: 14px;
        line-height: 20px;
        margin: 12px 0 20px;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 340px;
    }
    
    .load-more-btn {
        max-width: 100%;
    }
    
    /* ============================================
       REVIEW PAGE MOBILE STYLES
       ============================================ */
    
    .review-filters {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 10px;
        margin-bottom: 24px;
    }
    
    .review-filter-btn {
        font-size: 14px;
        padding: 8px 16px;
        height: 36px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .review-card {
        width: 100%;
        max-width: 340px;
        height: auto;
        min-height: 280px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .review-logo {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
    
    .review-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    
    .review-description {
        font-size: 13px;
        line-height: 18px;
        -webkit-line-clamp: 3;
    }
    
    .review-date {
        font-size: 12px;
        margin-top: 12px;
    }
    
    /* ============================================
       LEARN PAGE MOBILE STYLES
       ============================================ */
    
    .learn-hero-banner {
        width: 100%;
        max-width: 360px;
        height: 240px;
        margin: 20px auto 24px;
    }
    
    .learn-hero-content {
        padding: 30px 20px;
        width: 100%;
    }
    
    .learn-hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .learn-hero-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .learn-main-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    
    .learn-categories {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        order: 2;
    }
    
    .learn-content-wrapper {
        order: 1;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .learn-articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .learn-article-card {
        height: auto;
        min-height: 200px;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .learn-article-description {
        height: auto;
        -webkit-line-clamp: 4;
    }
    
    .container.learn-page .learn-main-wrapper .sidebar {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        order: 3;
        position: static;
    }

    .learn-pagination {
        margin-top: 24px;
    }
}

/* ============================================
   DATA PAGE STYLES
   ============================================ */

/* Data Page Layout */
.container.data-page {
    position: relative;
    flex-direction: column;
}

.data-header {
    width: 100%;
    margin-bottom: 20px;
}

/* Data Category Filters */
.data-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.data-filter-btn {
    padding: 10px 20px;
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid #e6e6e6;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.data-filter-btn:hover {
    border-color: var(--color-black);
    background-color: #f4f4f4;
}

.data-filter-btn.active {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

/* Data Table Wrapper */
.data-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-primary);
}

.data-table thead {
    background-color: transparent;
}

.data-table th {
    padding: 12px 0;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
    border-bottom: 1px solid #e6e6e6;
}

.data-table th:first-child {
    width: 32px;
    text-align: center;
}

.data-table th:nth-child(2) {
    width: 242px;
}

.data-table th:nth-child(3) {
    width: 120px;
    text-align: right;
}

.data-table th:nth-child(4),
.data-table th:nth-child(5),
.data-table th:nth-child(6) {
    width: 80px;
    text-align: right;
}

.data-table th:nth-child(7),
.data-table th:nth-child(8),
.data-table th:nth-child(9) {
    width: 154px;
    text-align: right;
}

.data-table th:last-child {
    width: 124px;
    text-align: center;
}

.table-header-info {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}

.table-header-info svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.data-table-row {
    border-bottom: 1px solid #e6e6e6;
    transition: background-color 0.3s;
}

.data-table-row:hover {
    background-color: #f9f9f9;
}

.data-table-row td {
    padding: 12px 0;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
    vertical-align: middle;
}

.data-table-row td:first-child {
    text-align: center;
    color: var(--color-black);
}

.data-table-row td.text-right {
    text-align: right;
}

/* Crypto Name Cell */
.crypto-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-name img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.crypto-name > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-name-main {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--color-black);
}

.crypto-name-symbol {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-grey-text);
}

/* Change Indicator */
.change-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.change-indicator.positive {
    color: var(--color-green);
}

.change-indicator.negative {
    color: var(--color-red);
}

.change-indicator svg {
    width: 8px;
    height: 5px;
    flex-shrink: 0;
}

.change-indicator span {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* Volume Cell */
.volume-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.volume-cell > span:first-child {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
}

.volume-secondary {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-grey-text);
}

/* Supply Cell */
.supply-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.supply-cell > span {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
    width: 100%;
    text-align: right;
}

.supply-progress {
    width: 100%;
    height: 4px;
    background-color: #e6e6e6;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.supply-progress-bar {
    height: 100%;
    background-color: #c4c4c4;
    border-radius: 100px;
    transition: width 0.3s;
}

/* Chart Image */
.chart-image {
    width: 124px;
    height: 40px;
    object-fit: cover;
}

/* ============================================
   DATA PAGE MOBILE STYLES
   ============================================ */

@media (max-width: 768px) {
    .data-filters {
        gap: 8px;
        margin-bottom: 24px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .data-filter-btn {
        padding: 8px 16px;
        height: 36px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .data-table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 24px;
    }

    .data-table {
        min-width: 1200px;
    }

    .data-table th,
    .data-table td {
        font-size: 12px;
        padding: 8px 4px;
    }

    .crypto-name img {
        width: 24px;
        height: 24px;
    }

    .crypto-name-main,
    .crypto-name-symbol {
        font-size: 12px;
    }

    .chart-image {
        width: 100px;
        height: 32px;
    }

    .load-more-container {
        margin-top: 24px;
    }
}

/* ============================================
   AWARDS PAGE STYLES
   ============================================ */

/* Awards Page Layout */
.container.awards-page {
    position: relative;
    flex-direction: column;
}

/* Awards Hero Banner */
.awards-hero-banner {
    width: 1400px;
    max-width: 100%;
    height: 320px;
    background: linear-gradient(to right, rgba(9, 25, 58, 0) 25.321%, #09193a 53.679%);
    background-color: #000;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin: 30px 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
}

.awards-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 620px;
    max-width: 100%;
}

.awards-hero-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    color: var(--color-white);
    margin: 0;
}

.awards-hero-subtitle {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--color-red);
    margin: 0;
}

.awards-hero-description {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-white);
    margin: 0;
}

.awards-hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 296px;
    z-index: 0;
}

.awards-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Awards Main Wrapper */
.awards-main-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.awards-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Awards Category */
.awards-category {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.awards-category.collapsed .awards-category-description,
.awards-category.collapsed .awards-nominees-grid {
    display: none;
}

.awards-category-header {
    background-color: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.awards-category-header:hover {
    background-color: #e9e9e9;
}

.awards-category-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--color-black);
    margin: 0;
    flex: 1;
}

.awards-category-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.awards-category-toggle svg {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.awards-category.collapsed .awards-category-toggle svg {
    transform: rotate(-90deg);
}

.awards-category-description {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    margin: 0;
}

/* Awards Nominees Grid */
.awards-nominees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Awards Nominee Card */
.awards-nominee-card {
    background-color: var(--color-white);
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: box-shadow 0.3s;
}

.awards-nominee-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.awards-nominee-votes {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--color-black);
}

.awards-nominee-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.awards-nominee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awards-nominee-name {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-black);
    margin: 0;
    text-align: center;
}

.awards-nominee-title {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-grey-text);
    margin: 0;
    text-align: center;
}

.awards-nominee-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.awards-details-btn {
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s;
}

.awards-details-btn:hover {
    border-color: var(--color-black);
    background-color: #f4f4f4;
}

.awards-vote-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
}

.awards-vote-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-red);
}

/* ============================================
   AWARDS PAGE MOBILE STYLES
   ============================================ */

@media (max-width: 768px) {
    .awards-hero-banner {
        height: auto;
        min-height: 280px;
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .awards-hero-content {
        width: 100%;
    }

    .awards-hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .awards-hero-subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .awards-hero-description {
        font-size: 14px;
        line-height: 20px;
    }

    .awards-hero-image {
        position: relative;
        transform: none;
        width: 200px;
        height: 170px;
        margin-top: 20px;
        align-self: center;
    }

    .awards-main-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .awards-content {
        width: 100%;
    }

    .awards-nominees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .awards-nominee-card {
        padding: 16px;
    }

    .awards-nominee-image {
        width: 80px;
        height: 80px;
    }

    .awards-nominee-name {
        font-size: 16px;
    }

    .awards-nominee-title {
        font-size: 12px;
    }

    .awards-nominee-actions {
        flex-direction: column;
        gap: 8px;
    }

    .awards-details-btn,
    .awards-vote-radio {
        width: 100%;
        justify-content: center;
    }

    .container.awards-page .awards-main-wrapper .sidebar {
        width: 100%;
        order: 2;
    }
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

/* Article Page Layout */
.container.article-page {
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
}

.article-main-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
}

/* Article Content */
.article-content {
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Article Header */
.article-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 600;
    line-height: 44px;
    color: var(--color-black);
    margin: 0;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.article-author-name {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color-black);
}

.article-meta-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.article-date {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-grey-text);
}

.article-separator {
    color: var(--color-grey-text);
}

.article-category {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-grey-text);
}

.article-share-btn {
    width: 40px;
    height: 40px;
    background-color: var(--color-grey-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.article-share-btn:hover {
    background-color: #e9e9e9;
}

/* Article Badge (Sponsored) */
.article-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.article-badge-sponsored {
    background-color: var(--color-red);
    color: var(--color-white);
}

/* Page Content Styles (Privacy Policy, etc) */
.page-main-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.page-main-wrapper h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    color: var(--color-black);
    margin: 40px 0 20px 0;
}

.page-main-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--color-black);
    margin: 32px 0 16px 0;
}

.page-main-wrapper h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--color-black);
    margin: 24px 0 12px 0;
}

.page-main-wrapper p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    margin: 16px 0;
}

.page-main-wrapper ul,
.page-main-wrapper ol {
    margin: 20px 0;
    padding-left: 32px;
}

.page-main-wrapper li {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    margin: 8px 0;
    padding-left: 8px;
}

.page-main-wrapper ul li {
    list-style-type: disc;
}

.page-main-wrapper ol li {
    list-style-type: decimal;
}

.page-main-wrapper a {
    color: var(--color-red);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.page-main-wrapper a:hover {
    opacity: 0.8;
}

.page-main-wrapper blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid var(--color-red);
    background-color: var(--color-grey-bg);
    font-style: italic;
}

.page-main-wrapper blockquote p {
    margin: 0;
}

/* Article Main Image */
.article-image-main {
    width: 100%;
    height: 440px;
    border-radius: 12px;
    overflow: hidden;
}

.article-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Table of Contents */
.article-toc {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-toc-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--color-black);
    margin: 0;
}

.article-toc-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.article-toc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-toc-item {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    padding-bottom: 8px;
    text-decoration: none;
    color: var(--color-black);
    transition: color 0.3s;
}

.article-toc-item:last-child {
    padding-bottom: 0;
}

.article-toc-item:hover {
    color: var(--color-red);
}

.article-toc-number {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    min-width: 22px;
}

.article-toc-text {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* Article Body */
.article-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-body p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    margin: 0;
}

.article-body p + p {
    margin-top: 16px;
}

.article-h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    color: var(--color-black);
    margin: 0;
    margin-top: 40px;
    margin-bottom: 32px;
}

.article-h2:first-child {
    margin-top: 0;
}

.article-h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: var(--color-black);
    margin: 0;
    margin-top: 24px;
    margin-bottom: 24px;
}

.article-h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--color-black);
    margin: 0;
    margin-top: 16px;
    margin-bottom: 16px;
}

.article-link {
    color: #0050b2;
    text-decoration: underline;
}

.article-link:hover {
    text-decoration: none;
}

/* Article Body Typography */
.article-body h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    color: var(--color-black);
    margin: 40px 0 24px 0;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: var(--color-black);
    margin: 32px 0 20px 0;
}

.article-body h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--color-black);
    margin: 24px 0 16px 0;
}

/* Article Body Links */
.article-body a {
    color: var(--color-red);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.article-body a:hover {
    opacity: 0.8;
}

/* Article Body Lists */
.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 24px;
}

.article-body ul {
    list-style-type: disc;
}

.article-body ol {
    list-style-type: decimal;
}

.article-body li {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    margin-bottom: 8px;
    padding-left: 8px;
}

.article-body li::marker {
    color: var(--color-red);
}

.article-body ul li::marker {
    font-size: 12px;
}

/* Article Body Blockquote */
.article-body blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid var(--color-red);
    background-color: transparent;
}

.article-body blockquote p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--color-black);
    font-style: normal;
    margin: 0;
}

.article-body blockquote cite {
    display: block;
    margin-top: 12px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-gray);
    font-style: normal;
}

/* Article Body Note/Aside Block */
.article-body .wp-block-quote.is-style-plain,
.article-body .article-note,
.article-body aside {
    margin: 24px 0;
    padding: 20px 24px;
    background-color: #F5F5F5;
    border-radius: 8px;
    border-left: none;
}

.article-body .wp-block-quote.is-style-plain p,
.article-body .article-note p,
.article-body aside p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--color-black);
    font-style: normal;
    margin: 0;
}

/* Article Image */
.article-image {
    width: 100%;
    height: 440px;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Lists */
.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-list li {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    padding-left: 28px;
    position: relative;
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--color-black);
    border-radius: 50%;
}

.article-list-numbered {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: item;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-list-numbered li {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    padding-left: 28px;
    position: relative;
    counter-increment: item;
}

.article-list-numbered li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
}

/* Article Highlight Blocks */
.article-highlight {
    border-left: 4px solid var(--color-red);
    padding-left: 24px;
    margin: 20px 0;
}

.article-highlight p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-black);
    margin: 0;
}

.article-highlight-gray {
    background-color: var(--color-grey-bg);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
}

.article-highlight-gray p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-black);
    margin: 0;
}

/* Article Tags */
.article-tags {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.article-tag {
    background-color: var(--color-grey-bg);
    border-radius: 100px;
    padding: 10px 12px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-grey-text);
    text-decoration: none;
    transition: background-color 0.3s;
}

.article-tag:hover {
    background-color: #e9e9e9;
}

/* Infinite Scroll */
.articles-infinite-container {
    flex: 1;
    max-width: 1060px;
}

.single-article-item {
    margin-bottom: 0;
}

.article-separator {
    height: 1px;
    background: var(--color-border);
    margin: 60px 0;
    position: relative;
}


.infinite-scroll-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    color: var(--color-grey-text);
    font-size: 14px;
}

.loader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.infinite-scroll-trigger {
    height: 1px;
    visibility: hidden;
}

.no-more-articles {
    font-size: 14px;
    color: var(--color-grey-text);
}

/* Choice List (Editor's Choice) */
.choice-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choice-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.choice-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.choice-content h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    color: var(--color-black);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.choice-content span {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--color-grey-text);
}

/* Sidebar Images */
.sidebar-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.sidebar-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.sidebar-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================
   ARTICLE PAGE MOBILE STYLES
   ============================================ */

@media (max-width: 768px) {
    .container.article-page {
        padding: 20px 16px 40px;
    }

    .article-main-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .article-content {
        max-width: 100%;
    }

    .article-title {
        font-size: 24px;
        line-height: 32px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .article-meta-right {
        flex-wrap: wrap;
        gap: 12px;
    }

    .article-image-main,
    .article-image {
        height: 240px;
    }

    .article-h2 {
        font-size: 22px;
        line-height: 28px;
        margin-top: 32px;
        margin-bottom: 24px;
    }

    .article-h3 {
        font-size: 20px;
        line-height: 26px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .article-h4 {
        font-size: 18px;
        line-height: 24px;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    /* Article Body Typography Mobile */
    .article-body h2 {
        font-size: 22px;
        line-height: 28px;
        margin: 32px 0 20px 0;
    }

    .article-body h3 {
        font-size: 20px;
        line-height: 26px;
        margin: 24px 0 16px 0;
    }

    .article-body h4 {
        font-size: 18px;
        line-height: 24px;
        margin: 20px 0 12px 0;
    }

    .article-body ul,
    .article-body ol {
        margin: 16px 0;
        padding-left: 20px;
    }

    .article-body li {
        font-size: 15px;
        line-height: 22px;
        padding-left: 6px;
    }

    .article-body blockquote {
        margin: 20px 0;
        padding: 14px 20px;
    }

    .article-body blockquote p {
        font-size: 15px;
        line-height: 24px;
    }

    .article-body .wp-block-quote.is-style-plain,
    .article-body .article-note,
    .article-body aside {
        margin: 20px 0;
        padding: 16px 20px;
    }

    .article-body .wp-block-quote.is-style-plain p,
    .article-body .article-note p,
    .article-body aside p {
        font-size: 15px;
        line-height: 24px;
    }

    .article-tags {
        gap: 8px;
    }

    .article-tag {
        font-size: 12px;
        padding: 8px 10px;
    }

    .sidebar {
        width: 100%;
        order: 2;
    }

    .sidebar-images {
        display: none;
    }
}

/* Expert Profile Page Styles */
.expert-profile-header {
    background: linear-gradient(135deg, var(--color-dark-grey) 0%, #2a2a35 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    color: var(--color-white);
}

.expert-profile-info {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.expert-profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.expert-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-profile-details {
    flex: 1;
}

.expert-profile-name {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px 0;
    color: var(--color-white);
}

.expert-profile-position {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-red);
    margin: 0 0 16px 0;
}

.expert-profile-bio {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px 0;
    max-width: 600px;
}

.expert-profile-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.expert-stat {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.expert-stat strong {
    color: var(--color-white);
    font-size: 24px;
    margin-right: 6px;
}

.expert-profile-social {
    display: flex;
    gap: 12px;
}

.expert-profile-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: background 0.3s ease;
}

.expert-profile-social .social-link:hover {
    background: var(--color-red);
}

/* Expert Articles Grid */
.section-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-black);
}

.expert-article-card {
    height: auto;
    min-height: 320px;
}

.expert-article-card .expert-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.expert-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.expert-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.expert-article-card:hover .expert-card-image img {
    transform: scale(1.05);
}

.expert-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-grey-text);
    margin: 8px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expert-post-type {
    font-size: 12px;
    text-transform: uppercase;
    padding: 4px 8px;
    background: var(--color-grey-bg);
    border-radius: 4px;
    color: var(--color-grey-text);
}

.expert-posts-count {
    font-size: 14px;
    color: var(--color-grey-text);
    white-space: nowrap;
}

/* Expert Card Hover Effects */
.expert-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Pagination */
.pagination,
.navigation.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination .nav-links,
.navigation.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination a,
.pagination span,
.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    background: var(--color-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination a:hover,
.navigation.pagination .nav-links a:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
}

.pagination .current,
.navigation.pagination .nav-links .current {
    background: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
}

.pagination .dots,
.navigation.pagination .nav-links .dots {
    border: none;
    background: none;
    min-width: auto;
    padding: 0 4px;
}

.no-posts-message,
.no-experts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: var(--color-grey-text);
}

/* Expert Profile Page Responsive */
@media (max-width: 768px) {
    .expert-profile-header {
        padding: 24px;
    }

    .expert-profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .expert-profile-avatar {
        width: 120px;
        height: 120px;
    }

    .expert-profile-name {
        font-size: 24px;
    }

    .expert-profile-bio {
        max-width: 100%;
    }

    .expert-profile-stats {
        justify-content: center;
    }

    .expert-profile-social {
        justify-content: center;
    }

    .experts-grid {
        grid-template-columns: 1fr;
    }

    .expert-card {
        width: 100%;
    }
}

/* ==========================================================================
   Cryptocurrency Table Styles
   ========================================================================== */

.crypto-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.crypto-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 1200px;
}

.crypto-table thead {
    background: var(--color-grey-bg);
    position: sticky;
    top: 0;
    z-index: 10;
}

.crypto-table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: var(--color-grey-text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-bottom: 1px solid var(--color-border);
}

.crypto-table th.crypto-col-rank,
.crypto-table td.crypto-col-rank {
    text-align: center;
    width: 50px;
}

.crypto-table th.crypto-col-price,
.crypto-table td.crypto-col-price,
.crypto-table th.crypto-col-cap,
.crypto-table td.crypto-col-cap,
.crypto-table th.crypto-col-volume,
.crypto-table td.crypto-col-volume {
    text-align: right;
}

.crypto-table th.crypto-col-change,
.crypto-table td.crypto-col-change {
    text-align: right;
    width: 80px;
}

.crypto-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s;
}

.crypto-table tbody tr:hover {
    background-color: var(--color-grey-bg);
}

.crypto-table td {
    padding: 16px 12px;
    vertical-align: middle;
}

/* Name cell */
.crypto-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crypto-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.crypto-name-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.crypto-name {
    font-weight: 600;
    color: var(--color-black);
}

.crypto-symbol {
    font-size: 12px;
    color: var(--color-grey-text);
    text-transform: uppercase;
}

/* Price column */
.crypto-col-price {
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'tnum';
}

/* Change columns */
.crypto-col-change {
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'tnum';
}

.crypto-col-change.positive {
    color: var(--color-green);
}

.crypto-col-change.negative {
    color: var(--color-red);
}

/* Market cap and volume */
.crypto-col-cap,
.crypto-col-volume,
.crypto-col-supply {
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'tnum';
    color: var(--color-grey-text);
}

/* Sparkline chart */
.crypto-col-chart {
    width: 150px;
    padding-right: 20px;
}

.crypto-sparkline {
    width: 120px;
    height: 40px;
}

.crypto-sparkline.positive {
    filter: hue-rotate(100deg) brightness(0.9);
}

.crypto-sparkline.negative {
    filter: hue-rotate(0deg) brightness(0.9);
}

/* Table error message */
.crypto-table-error {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-grey-text);
    background: var(--color-grey-bg);
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .crypto-table {
        font-size: 13px;
    }

    .crypto-table th,
    .crypto-table td {
        padding: 12px 8px;
    }

    .crypto-icon {
        width: 24px;
        height: 24px;
    }

    .crypto-sparkline {
        width: 80px;
        height: 30px;
    }

    .crypto-col-chart {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .crypto-table-wrapper {
        margin: 10px -20px;
        border-radius: 0;
        box-shadow: none;
    }

    .crypto-table th.crypto-col-supply,
    .crypto-table td.crypto-col-supply,
    .crypto-table th.crypto-col-chart,
    .crypto-table td.crypto-col-chart {
        display: none;
    }

    .crypto-table {
        min-width: 800px;
    }
}

/* ============================================
   SEARCH PAGE STYLES
   ============================================ */

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-grey-bg);
    border-radius: 8px;
}

.no-results p {
    font-size: 18px;
    color: var(--color-grey-text);
    margin-bottom: 24px;
}

/* Search Form on No Results Page */
.search-form-large {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 12px;
}

.search-form-large input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 16px;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s;
}

.search-form-large input:focus {
    border-color: var(--color-red);
}

.search-form-large button {
    padding: 14px 32px;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form-large button:hover {
    background-color: #c42f2f;
}

/* Search Results Title */
.page-title span {
    color: var(--color-red);
}

@media (max-width: 768px) {
    .search-form-large {
        flex-direction: column;
    }

    .search-form-large button {
        width: 100%;
    }

    .no-results {
        padding: 40px 16px;
    }

    .no-results p {
        font-size: 16px;
    }
}

/* ============================================
   MOBILE SEARCH MODAL
   ============================================ */

.mobile-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-search-modal.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-search-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-search-modal.active .mobile-search-container {
    transform: translateY(0);
}

.mobile-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-grey-bg);
    border-radius: 100px;
    padding: 12px 16px;
}

.mobile-search-form svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.mobile-search-form input {
    flex: 1;
    border: none;
    background: none;
    font-size: 16px;
    font-family: var(--font-primary);
    outline: none;
    color: var(--color-black);
}

.mobile-search-form input::placeholder {
    color: var(--color-grey-text);
}

.mobile-search-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-search-close svg {
    width: 24px;
    height: 24px;
}