.wek-homepage {
    background: #f4f4f4;
    padding: 24px 0 32px;
}

@media (max-width: 768px) {
    .wek-homepage {
        padding: 24px 0 24px;
    }
}

.wek-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 1024px) {
    .wek-layout {
        grid-template-columns: 1fr 300px;
        gap: 32px;
    }
}

.wek-layout__main {
    min-width: 0;
}

.wek-layout__sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .wek-layout__sidebar {
        display: block;
    }
}

.wek-layout__sidebar .newslist,
.wek-layout__sidebar .partners {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.06);
}

.wek-layout__sidebar .newslist__header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.wek-layout__sidebar .partners__header {
    margin-bottom: 12px;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wek-wrapper {
    padding: 0;
}

.wek-section {
    margin-bottom: 32px;
}

.wek-section:last-child {
    margin-bottom: 0;
}

.wek-section__header {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wek-section__title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

.wek-section__title a {
    color: inherit;
    text-decoration: none;
}

.wek-section__title a:hover {
    color: #e65c00;
}

.wek-section__tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

a.wek-section__tag,
a.wek-section__tag:visited,
a.wek-section__tag:not(:hover) {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

a.wek-section__tag:hover {
    color: #e65c00;
}

.wek-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 768px) {
    .wek-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .wek-section__main {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .wek-section__grid {
        grid-template-columns: 340px 1fr 1fr;
        gap: 18px;
    }
    
    .wek-section__main {
        grid-column: 1;
        grid-row: 1 / span 2;
    }
}

.wek-section__side {
    display: contents;
}

.wek-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.wek-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.wek-card--large {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wek-card--large .wek-card__image-link {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.wek-card--large .wek-card__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
}

.wek-card--large:hover .wek-card__image {
    transform: scale(1.03);
}

.wek-card--large .wek-card__content {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wek-card--large .wek-card__title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

@media (min-width: 1024px) {
    .wek-card--large .wek-card__title {
        font-size: 19px;
    }
}

.wek-card--large .wek-card__title a {
    color: #111;
    text-decoration: none;
}

.wek-card--large .wek-card__title a:visited {
    color: #555;
}

.wek-card--large .wek-card__title a:hover {
    color: #e65c00;
}

.wek-card--large .wek-card__description {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.wek-card--large .wek-card__meta {
    padding: 0;
    margin-top: 12px;
}

.wek-card--medium,
.wek-card--small {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 16px;
    gap: 16px;
    min-height: 140px;
}

.wek-card--medium .wek-card__body,
.wek-card--small .wek-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wek-card--medium .wek-card__image-link--thumb,
.wek-card--small .wek-card__image-link--thumb {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.wek-card--medium .wek-card__title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.1px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wek-card--small .wek-card__title {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wek-card--medium .wek-card__title a,
.wek-card--small .wek-card__title a {
    color: #111;
    text-decoration: none;
}

.wek-card--medium .wek-card__title a:visited,
.wek-card--small .wek-card__title a:visited {
    color: #555;
}

.wek-card--medium .wek-card__title a:hover,
.wek-card--small .wek-card__title a:hover {
    color: #e65c00;
}

.wek-card--medium .wek-card__description {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    margin: 0 0 auto 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wek-card--small .wek-card__description {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    margin: 0 0 auto 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wek-card--medium .wek-card__meta,
.wek-card--small .wek-card__meta {
    margin-top: auto;
    padding-top: 10px;
}

.wek-card__image-link--thumb {
    width: 100px;
    height: 74px;
}

.wek-card--medium .wek-card__image-link--thumb {
    width: 130px;
    height: 95px;
}

.wek-card__image-link--thumb .wek-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.wek-card:hover .wek-card__image-link--thumb .wek-card__image {
    transform: scale(1.05);
}

.wek-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 12px;
    color: #888;
}

.wek-card__source {
    color: #e65c00;
    text-decoration: none;
    font-weight: 600;
}

.wek-card__source:hover {
    text-decoration: underline;
}

.wek-card__time {
    color: #888;
}

.wek-card__time::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 8px;
    vertical-align: middle;
}

.wek-card__time:first-child::before {
    display: none;
}

.wek-rub {
    padding: 0px 0 32px;
}

.wek-rub__header {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.wek-rub__title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .wek-rub__title {
        font-size: 32px;
    }
}

.wek-rub__tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

a.wek-rub__tag,
a.wek-rub__tag:visited,
a.wek-rub__tag:not(:hover) {
    display: inline-block;
    padding: 8px 16px;
    background: #f4f4f4;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.15s ease;
}

a.wek-rub__tag:hover {
    background: #e65c00;
    color: #fff;
}

.wek-rub__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .wek-rub__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .wek-rub__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wek-card--hero {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .wek-card--hero {
        grid-column: 1 / -1;
        flex-direction: row;
    }
}

.wek-card--hero .wek-card__image-link {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .wek-card--hero .wek-card__image-link {
        width: 55%;
    }
}

.wek-card--hero .wek-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.wek-card--hero:hover .wek-card__image {
    transform: scale(1.03);
}

.wek-card--hero .wek-card__content {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wek-card__title--hero {
    margin: 0 0 14px 0;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {
    .wek-card__title--hero {
        font-size: 26px;
    }
}

@media (min-width: 1024px) {
    .wek-card__title--hero {
        font-size: 28px;
    }
}

.wek-card__title--hero a {
    color: #111;
    text-decoration: none;
}

.wek-card__title--hero a:visited {
    color: #444;
}

.wek-card__title--hero a:hover {
    color: #e65c00;
}

.wek-card--hero .wek-card__description {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    flex: 1;
}

.wek-card--hero .wek-card__meta {
    margin-top: 16px;
    padding: 0;
}

.wek-card--grid {
    display: flex;
    flex-direction: column;
}

.wek-card--grid .wek-card__image-link {
    display: block;
    overflow: hidden;
}

.wek-card--grid .wek-card__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.wek-card--grid:hover .wek-card__image {
    transform: scale(1.03);
}

.wek-card--grid .wek-card__content {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wek-card--grid .wek-card__title {
    margin: 0 0 10px 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
}

.wek-card--grid .wek-card__title a {
    color: #111;
    text-decoration: none;
}

.wek-card--grid .wek-card__title a:visited {
    color: #555;
}

.wek-card--grid .wek-card__title a:hover {
    color: #e65c00;
}

.wek-card--grid .wek-card__description {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.wek-card--grid .wek-card__meta {
    padding: 0;
    margin-top: 12px;
}

.wek-rub__more {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 32px auto 0;
    padding: 14px 32px;
    background: #e65c00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wek-rub__more:hover {
    background: #d45500;
    transform: translateY(-1px);
}

.wek-rub__loader {
    width: 40px;
    height: 40px;
    margin: 32px auto 0;
    animation: wek-spin 1s linear infinite;
    border: 3px solid #f4f4f4;
    border-top-color: #e65c00;
    border-radius: 50%;
}

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

.wek-page {
    background: #f4f4f4;
    min-height: 100vh;
}

.wek-page .container {
    padding-top: 0;
    padding-bottom: 0;
}

.wek-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
}

@media (min-width: 1024px) {
    .wek-content {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
}

.wek-content__main {
    min-width: 0;
}

.wek-content__sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .wek-content__sidebar {
        display: block;
    }
}

.wek-sidebar-block {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}


.wek-sidebar-block__title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 18px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wek-sidebar-block__title--small {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.wek-sidebar-block__more {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f5f5f5, #eee);
    color: #e65c00;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.wek-sidebar-block__more:hover {
    background: linear-gradient(135deg, #e65c00, #ff7a1a);
    color: #fff;
    transform: translateY(-1px);
}

.wek-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wek-news-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.wek-news-item:first-child {
    padding-top: 0;
}

.wek-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wek-news-item:hover {
    background: rgba(230, 92, 0, 0.02);
}

.wek-news-item__image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.wek-news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.wek-news-item:hover .wek-news-item__image img {
    transform: scale(1.05);
}

.wek-news-item__content {
    flex: 1;
    min-width: 0;
}

.wek-news-item__link {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #111;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wek-news-item__link:link {
    color: #111;
}

.wek-news-item__link:hover {
    color: #e65c00;
}

.wek-news-item__link:visited {
    color: #111;
}

.wek-news-item__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wek-news-item__date {
    font-size: 11px;
    color: #888;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: #f5f5f5;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.wek-news-item__time {
    font-size: 12px;
    color: #999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.wek-news-item__time::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #e65c00;
    border-radius: 50%;
    opacity: 0.6;
}

.wek-article {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
    position: relative;
}

@media (max-width: 767px) {
    .wek-article {
        padding: 24px 20px;
        border-radius: 0;
        margin: 0 -16px;
    }
}

.wek-article__header {
    margin-bottom: 20px;
    padding-top: 0;
}

.wek-article__category {
    display: inline-block;
    padding: 8px 16px;
    background: #e65c00;
    color: #fff !important;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(230, 92, 0, 0.3);
    transition: all 0.2s ease;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wek-article__category:not(:hover) {
    color: #fff !important;
}

.wek-article__category:hover {
    background: #d45500;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 92, 0, 0.4);
}

.wek-article__title {
    margin: 0 0 16px 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .wek-article__title {
        font-size: 30px;
        line-height: 1.15;
    }
}

@media (min-width: 1024px) {
    .wek-article__title {
        font-size: 34px;
    }
}

.wek-article__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #666;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.wek-article__author {
    font-weight: 600;
    color: #333;
}

.wek-article__author::after {
    content: '•';
    margin-left: 12px;
    color: #ccc;
}

.wek-article__date {
    color: #666;
}

.wek-article__views {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    margin-left: auto;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 12px;
    font-size: 13px;
}

.wek-article__views svg {
    opacity: 0.7;
}

.wek-article__image {
    margin: 0 -40px 32px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .wek-article__image {
        margin: 0 -20px 24px;
    }
}

.wek-article__image img {
    width: 100%;
    height: auto;
    display: block;
}

.wek-article__lead {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fff7f0, #fff3e8);
    border-left: 4px solid #e65c00;
    border-radius: 0 12px 12px 0;
}

@media (min-width: 768px) {
    .wek-article__lead {
        font-size: 20px;
        padding: 24px 28px;
    }
}

.wek-article__body {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
}

.wek-article__body p {
    margin: 0 0 1.6em 0;
}

.wek-article__body h2,
.wek-article__body h3,
.wek-article__body h4 {
    font-family: 'Montserrat', sans-serif;
    margin: 2em 0 1em 0;
    color: #111;
    font-weight: 700;
}

.wek-article__body h2 {
    font-size: 1.6em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #f0f0f0;
}

.wek-article__body h3 {
    font-size: 1.3em;
}

.wek-article__body a {
    color: #e65c00;
    text-decoration: none;
    border-bottom: 1px solid rgba(230, 92, 0, 0.3);
    transition: border-color 0.2s;
}

.wek-article__body a:hover {
    color: #d45500;
    border-bottom-color: #d45500;
}

.wek-article__body blockquote {
    margin: 2em 0;
    padding: 1.5em 2em;
    background: linear-gradient(135deg, #f9f9f9, #f5f5f5);
    border-left: 4px solid #e65c00;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #444;
}

.wek-article__body ul,
.wek-article__body ol {
    padding-left: 1.5em;
    margin: 1.5em 0;
}

.wek-article__body li {
    margin-bottom: 0.6em;
}

.wek-article__source {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
    font-size: 14px;
    color: #888;
}

.wek-article__source a {
    color: #e65c00;
}

.wek-article__footnotes {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.7;
    border: 1px solid #eee;
}

.wek-article .subscribe {
    margin-top: 40px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eee;
}

.wek-article .subscribe__header {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.wek-article .subscribe__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px 12px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.wek-article .subscribe__link:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #d0d0d0;
}

.wek-article .subscribe__icon {
    fill: #333;
    opacity: 0.9;
}

.wek-article .subscribe__link:hover .subscribe__icon {
    opacity: 1;
}

.article__share.share {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
    padding: 12px 8px;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 8px 48px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    align-items: center;
}

@media (min-width: 1401px) {
    .article__share.share {
        left: auto;
    }
}

@media (max-width: 1400px) {
    .article__share.share {
        left: 10px;
        padding: 8px 6px;
    }
}

@media (max-width: 1200px) {
    .article__share.share {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin: 32px auto 0;
        padding: 16px 20px;
        background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
        border-radius: 12px;
        box-shadow: none;
        backdrop-filter: none;
        gap: 8px;
    }
    
    .article__share.share .share__item {
        width: 40px;
        height: 40px;
    }
}

.share--hidden {
    display: none !important;
}

@media (min-width: 1201px) {
    .article__share.share.share--hidden {
        display: flex !important;
    }
}

.share--visible {
    display: flex !important;
}

.share__item {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.share__item:hover {
    transform: scale(1.08);
}

.share__item .social__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}

.share__item--vkt .social__icon,
.share__item--okl .social__icon,
.share__item--mlr .social__icon {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
}

.share__item--tg .social__icon,
.share__item--wa .social__icon {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
}

.share__item--copy .social__icon {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
}

.share__item--vkt {
    background: linear-gradient(135deg, #4c75a3, #5d8cbb);
}

.share__item--vkt:hover {
    box-shadow: 0 4px 16px rgba(76, 117, 163, 0.5);
}

.share__item--okl {
    background: linear-gradient(135deg, #ed812b, #f5953d);
}

.share__item--okl:hover {
    box-shadow: 0 4px 16px rgba(237, 129, 43, 0.5);
}

.share__item--mlr {
    background: linear-gradient(135deg, #168de2, #1ea1ff);
}

.share__item--mlr:hover {
    box-shadow: 0 4px 16px rgba(22, 141, 226, 0.5);
}

.share__item--tg {
    background: linear-gradient(135deg, #0088cc, #00a0e3);
}

.share__item--tg:hover {
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.5);
}

.share__item--wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.share__item--wa:hover {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

.share__item--copy {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
}

.share__item--copy:hover {
    box-shadow: 0 4px 16px rgba(107, 114, 128, 0.5);
}

.share__item--vkt .social__icon,
.share__item--okl .social__icon,
.share__item--mlr .social__icon,
.share__item--tg .social__icon,
.share__item--wa .social__icon {
    fill: #fff;
}

.share__item--copy .social__icon {
    stroke: #fff;
    fill: none;
}

.share__count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 8px;
    min-width: 14px;
    text-align: center;
    display: none;
    line-height: 1.2;
    z-index: 1;
    border: 1px solid #fff;
}

.share__count:not(:empty):not([data-share-type="0"]) {
    display: inline-block;
}

.share__copy-text {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    display: none !important;
    pointer-events: none;
    z-index: 10;
}

.share__copy-text.show {
    display: block !important;
}

.share__copy-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1f2937;
}

.wek-article__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid #f0f0f0;
}

@media (min-width: 768px) {
    .wek-article__nav {
        grid-template-columns: 1fr 1fr;
    }
}

.wek-article__nav-link {
    display: block;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.wek-article__nav-link:hover {
    background: linear-gradient(135deg, #fff7f0, #fff3e8);
    border-color: rgba(230, 92, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.wek-article__nav-link--next {
    text-align: right;
}

.wek-article__nav-label {
    display: block;
    font-size: 12px;
    color: #e65c00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.wek-article__nav-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wek-article__nav-link:hover .wek-article__nav-title {
    color: #e65c00;
}


.wek-article__related {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid #f0f0f0;
}

.wek-article__related-title,
.wek-article__similar-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wek-article__related-title::before,
.wek-article__similar-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #e65c00, #ff8533);
    border-radius: 2px;
}

.wek-article__related-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .wek-article__related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wek-article__related-item {
    display: block;
    padding: 20px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.wek-article__related-item:hover {
    background: linear-gradient(135deg, #fff7f0, #fff3e8);
    border-color: rgba(230, 92, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.wek-article__related-item-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wek-article__related-item:hover .wek-article__related-item-title {
    color: #e65c00;
}

.wek-article__related-item-date {
    display: block;
    font-size: 12px;
    color: #888;
}

.wek-article__similar {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid #f0f0f0;
}

.wek-article__similar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wek-article__similar-item {
    display: block;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 32px;
}

.wek-article__similar-item::before {
    content: '→';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #e65c00;
    font-weight: 700;
    transition: transform 0.2s;
}

.wek-article__similar-item:hover {
    background: linear-gradient(135deg, #fff7f0, #fff3e8);
    border-color: rgba(230, 92, 0, 0.2);
    color: #e65c00;
}

.wek-article__similar-item:hover::before {
    transform: translateY(-50%) translateX(3px);
}

.wek-popular-list {
    display: flex;
    flex-direction: column;
    counter-reset: popular-counter;
}

.wek-popular-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.2s ease;
    counter-increment: popular-counter;
    position: relative;
}

.wek-popular-item:first-child {
    padding-top: 0;
}

.wek-popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wek-popular-item:hover {
    transform: translateX(4px);
}

.wek-popular-item__image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
}

.wek-popular-item__image::before {
    content: counter(popular-counter);
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #e65c00, #ff7a1a);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(230, 92, 0, 0.4);
}

.wek-popular-item__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.wek-popular-item__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.wek-popular-item:hover .wek-popular-item__title {
    color: #e65c00;
}

.wek-popular-item__category {
    font-size: 10px;
    font-weight: 700;
    color: #e65c00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wek-content--article {
    padding-top: 32px;
}

@media (max-width: 767px) {
    .wek-content--article {
        padding-top: 0;
    }
}

.wek-article--dynamic {
    margin-top: 48px;
    margin-bottom: 48px;
    position: relative;
}

.wek-article--dynamic::before {
    content: 'Следующая статья';
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: #e65c00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 10;
}

.wek-article--dynamic .wek-article__title {
    font-size: 24px;
}

@media (min-width: 768px) {
    .wek-article--dynamic .wek-article__title {
        font-size: 30px;
    }
}

.wek-tag {
    padding: 0px 0 32px;
}

.wek-tag__empty {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 16px;
    border: 1px solid #eee;
}

.wek-tag__empty-message {
    font-size: 18px;
    color: #666;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.wek-tag__empty-link {
    display: inline-block;
    padding: 12px 24px;
    background: #e65c00;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.wek-tag__empty-link:hover {
    background: #d45500;
}

.wek-tag__header {
    margin-bottom: 28px;
}

.wek-tag__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.wek-tag__breadcrumb a {
    color: #666;
    text-decoration: none;
}

.wek-tag__breadcrumb a:hover {
    color: #e65c00;
}

.wek-tag__breadcrumb-sep {
    color: #ccc;
}

.wek-tag__title {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .wek-tag__title {
        font-size: 32px;
    }
}

.wek-tag__description {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.wek-tag__description a {
    color: #e65c00;
    text-decoration: none;
}

.wek-tag__description a:hover {
    text-decoration: underline;
}

.wek-tag__footer {
    margin-top: 32px;
    text-align: center;
}

.wek-tag__more {
    display: inline-block;
    padding: 14px 32px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wek-tag__more:hover {
    background: #333;
    transform: translateY(-1px);
}

.wek-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wek-tag-link {
    display: inline-block;
    padding: 8px 14px;
    background: #f4f4f4;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.15s ease;
}

.wek-tag-link:hover {
    background: #e65c00;
    color: #fff;
}

.wek-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.wek-info-bar__left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.wek-info-bar__label {
    color: #999;
}

.wek-info-bar__date {
    color: #333;
    font-weight: 600;
}

.wek-info-bar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wek-info-bar__rate {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f8f8f8;
    border-radius: 6px;
}

.wek-info-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.wek-info-bar__icon svg {
    width: 14px;
    height: 14px;
}

.wek-info-bar__icon--usd {
    color: #4caf50;
}

.wek-info-bar__icon--eur {
    color: #2196f3;
}

.wek-info-bar__icon--oil {
    color: #ff9800;
}

.wek-info-bar__icon--bitcoin {
    color: #ff7a00;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.wek-info-bar__icon--gold {
    color: #ffd700;
}

.wek-info-bar__rate {
    cursor: help;
    position: relative;
}

.wek-info-bar__rate:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-bottom: 5px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    animation: fadeInTooltip 0.2s ease forwards;
}

.wek-info-bar__rate:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    margin-bottom: -5px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    animation: fadeInTooltip 0.2s ease forwards;
}

@keyframes fadeInTooltip {
    to {
        opacity: 1;
    }
}

.wek-info-bar__value {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.wek-info-bar__change {
    font-size: 10px;
    font-weight: 500;
    padding: 1px 4px;
    border-radius: 3px;
}

.wek-info-bar__change--up {
    color: #c62828;
    background: #ffebee;
}

.wek-info-bar__change--down {
    color: #2e7d32;
    background: #e8f5e9;
}

@media (max-width: 768px) {
    .wek-info-bar {
        padding: 8px 10px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .wek-info-bar__left {
        font-size: 11px;
        gap: 4px;
        flex-direction: column;
        align-items: flex-start;
        flex-shrink: 0;
    }
    
    .wek-info-bar__label {
        display: inline;
        color: #999;
        font-size: 10px;
    }
    
    .wek-info-bar__date {
        font-size: 11px;
    }
    
    .wek-info-bar__right {
        gap: 6px;
        flex-wrap: wrap;
        flex: 1;
        min-width: 0;
        justify-content: flex-end;
    }
    
    .wek-info-bar__rate {
        padding: 3px 6px;
        gap: 3px;
        border-radius: 4px;
        flex-shrink: 0;
    }
    
    .wek-info-bar__value {
        font-size: 11px;
        white-space: nowrap;
    }
    
    .wek-info-bar__icon {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
    
    .wek-info-bar__icon svg {
        width: 10px;
        height: 10px;
    }
    
    .wek-info-bar__icon--bitcoin {
        font-size: 10px;
        line-height: 1;
    }
    
    .wek-info-bar__change {
        font-size: 8px;
        padding: 1px 3px;
        flex-shrink: 0;
    }
    
    .wek-info-bar__rate:hover::after,
    .wek-info-bar__rate:hover::before {
        display: none;
    }
}

.wek-news-card {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}

.wek-news-card__header {
    padding: 12px 16px 0;
    border-bottom: 1px solid #eee;
}

.wek-news-card__tabs {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.wek-news-card__tabs::-webkit-scrollbar {
    display: none;
}

.wek-news-card__tab {
    padding: 5px 10px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
    flex-shrink: 0;
}

.wek-news-card__tab:hover {
    background: #f0f0f0;
}

.wek-news-card__tab--active {
    background: #e8e8e8;
    font-weight: 500;
    color: #000;
}

.wek-news-card__body {
    padding: 6px 16px 14px;
}

.wek-news-card__pane {
    display: none;
}

.wek-news-card__pane--active {
    display: block;
}

.wek-news-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wek-news-card__item {
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
}

.wek-news-card__item:last-child {
    border-bottom: none;
}

.wek-news-card__link,
.wek-news-card__link:visited,
.wek-news-card__link:not(:hover) {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
}

.wek-news-card__link:hover {
    color: #111;
}

.wek-news-card__link:hover .wek-news-card__title {
    text-decoration: underline;
}

.wek-news-card__thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.wek-news-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.wek-news-card__text {
    flex: 1;
    min-width: 0;
}

.wek-news-card__title {
    font-size: 13px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wek-news-card__meta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 6px;
    color: #999;
    font-size: 11px;
    white-space: nowrap;
}

.wek-news-card__date {
    color: #999;
}

.wek-news-card__time {
    color: #888;
}

.wek-news-card__footer {
    padding-top: 6px;
    margin-top: 2px;
    border-top: 1px solid #f0f0f0;
}

.wek-news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    transition: color 0.15s ease;
}

.wek-news-card__more:hover {
    color: #000;
}

.wek-news-card__more svg {
    transition: transform 0.2s ease;
}

.wek-news-card__more:hover svg {
    transform: translateY(1px);
}

.wek-news-card__all {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: color 0.15s ease;
}

.wek-news-card__all:hover {
    color: #000;
}

.wek-news-card__loading {
    font-size: 12px;
    color: #999;
    padding: 4px 0;
}

@media (max-width: 768px) {
    .wek-news-card {
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .wek-news-card__header {
        padding: 10px 12px 0;
    }
    
    .wek-news-card__tab {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .wek-news-card__body {
        padding: 4px 12px 12px;
    }
    
    .wek-news-card__item {
        padding: 5px 0;
    }
    
    .wek-news-card__title {
        font-size: 12px;
    }
    
    .wek-news-card__thumb {
        width: 22px;
        height: 22px;
    }
    
    .wek-news-card__meta {
        display: none;
    }
}

.footer {
    background-color: #333;
    color: #888;
    margin-top: 40px;
    padding: 36px 0 20px;
    border-top: 2px solid #e65c00;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .footer__top {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .footer__top {
        grid-template-columns: 2fr 1fr;
    }
}

.footer__main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__brand {
    flex: 1;
}

.footer__title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    color: #ff7a00;
    letter-spacing: -0.4px;
}

.footer__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
    max-width: 500px;
}

.footer__social {
    margin-top: 6px;
}

.footer__social .social__title {
    color: #ff7a00;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer__social .social__list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__social .social__link {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__social .social__link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

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

@media (min-width: 768px) {
    .footer__nav {
        gap: 32px;
    }
}

.footer__nav-column {
    display: flex;
    flex-direction: column;
}

.footer__nav-title {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    color: #ff7a00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav-list a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer__nav-list a:hover {
    color: #e65c00;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    align-items: flex-start;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

@media (min-width: 768px) {
    .footer__info {
        flex-direction: row;
        gap: 28px;
    }
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer__copyright p {
    margin: 0;
    font-size: 11px;
    color: #888;
    line-height: 1.5;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer__contacts p {
    margin: 0;
    font-size: 11px;
    color: #888;
    line-height: 1.5;
}

.footer__contacts a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__contacts a:hover {
    color: #e65c00;
}

.footer__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer__counters {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-top: 32px;
}

.footer__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ff7a00;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.footer__age:hover {
    background: rgba(255, 122, 0, 0.2);
    border-color: #ff7a00;
    color: #ff7a00;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .footer {
        padding: 28px 0 18px;
        margin-top: 32px;
    }
    
    .footer__title {
        font-size: 18px;
    }
    
    .footer__nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer__bottom {
        align-items: flex-start;
    }
    
    .footer__age {
        align-self: flex-end;
    }
}

.currency-page {
    padding: 32px 0;
}

@media (max-width: 767px) {
    .currency-page {
        padding: 20px 0;
    }
}

.currency-page__header {
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    .currency-page__header {
        margin-bottom: 24px;
    }
}

.currency-page__title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .currency-page__title {
        font-size: 28px;
        margin-bottom: 12px;
    }
}

.currency-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
}

.currency-date__label {
    font-weight: 500;
}

.currency-date__value {
    font-weight: 700;
    color: #000;
}

@media (max-width: 767px) {
    .currency-date {
        font-size: 13px;
        padding: 6px 12px;
    }
}

.currency-main-rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 767px) {
    .currency-main-rates {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }
}

.currency-rate-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .currency-rate-card {
        padding: 20px;
        border-radius: 12px;
    }
}

.currency-rate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ff9a33);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.currency-rate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 16px 48px rgba(0,0,0,0.08);
}

.currency-rate-card:hover::before {
    opacity: 1;
}

.currency-rate-card--primary {
    border: 2px solid #ff7a00;
    background: linear-gradient(135deg, #fff7f0 0%, #ffffff 50%, #f8f9fa 100%);
}

.currency-rate-card--primary::before {
    opacity: 1;
}


.currency-rate-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .currency-rate-card__header {
        gap: 12px;
        margin-bottom: 16px;
    }
}

.currency-rate-card__icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 154, 51, 0.1));
    border-radius: 14px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .currency-rate-card__icon-wrapper {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
}

.currency-rate-card__icon {
    width: 28px;
    height: 28px;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-rate-card__icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .currency-rate-card__icon {
        width: 24px;
        height: 24px;
    }
}

.currency-rate-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.currency-rate-card__code {
    font-size: 16px;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.5px;
}

.currency-rate-card__name {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    text-transform: none;
    letter-spacing: 0;
}

.currency-rate-card__value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.currency-rate-card__amount {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    letter-spacing: -1px;
}

@media (max-width: 767px) {
    .currency-rate-card__amount {
        font-size: 32px;
    }
}

.currency-rate-card__unit {
    font-size: 18px;
    font-weight: 600;
    color: #999;
    margin-left: 4px;
}

.currency-rate-card__change {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    width: fit-content;
    transition: transform 0.2s ease;
}

.currency-rate-card__change:hover {
    transform: scale(1.05);
}

.currency-rate-card__change--up {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.1));
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.currency-rate-card__change--down {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.1));
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.currency-rate-card__change-icon {
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
}

.currency-rate-card__change-value {
    line-height: 1;
}

.currency-rate-card__change-percent {
    font-size: 12px;
    opacity: 0.8;
    margin-left: 4px;
}

.currency-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    margin: 0 0 24px 0;
    letter-spacing: -0.3px;
}

@media (max-width: 767px) {
    .currency-section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

.currency-indices {
    margin: 48px 0;
}

@media (max-width: 767px) {
    .currency-indices {
        margin: 32px 0;
    }
}

.currency-indices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

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

.currency-index-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

@media (max-width: 767px) {
    .currency-index-card {
        padding: 16px;
        gap: 12px;
        border-radius: 12px;
    }
}

.currency-index-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06);
    border-color: #ff7a00;
}

.currency-index-card--gold {
    border-color: #fbbf24;
}

.currency-index-card--gold:hover {
    border-color: #f59e0b;
}

.currency-index-card--oil {
    border-color: #3b82f6;
}

.currency-index-card--oil:hover {
    border-color: #2563eb;
}

.currency-index-card--bitcoin {
    border-color: #f59e0b;
}

.currency-index-card--bitcoin:hover {
    border-color: #d97706;
}

.currency-index-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ff7a00;
}

.currency-index-card__icon svg {
    width: 100%;
    height: 100%;
}

.currency-index-card--gold .currency-index-card__icon {
    color: #ffd700;
}

.currency-index-card--oil .currency-index-card__icon {
    color: #ff9800;
}

.currency-index-card--bitcoin .currency-index-card__icon {
    color: #ff7a00;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 767px) {
    .currency-index-card__icon {
        width: 36px;
        height: 36px;
    }
    
    .currency-index-card--bitcoin .currency-index-card__icon {
        font-size: 24px;
    }
}

.currency-index-card__content {
    flex: 1;
    min-width: 0;
}

.currency-index-card__name {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.currency-index-card__value {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.currency-index-card__amount {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

.currency-index-card__unit {
    font-size: 12px;
    font-weight: 500;
    color: #999;
}

.currency-index-card__change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

.currency-index-card__change-icon {
    font-size: 14px;
    line-height: 1;
}

.currency-index-card__change--up {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.currency-index-card__change--down {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.currency-converter {
    margin: 48px 0;
}

@media (max-width: 767px) {
    .currency-converter {
        margin: 32px 0;
    }
}

.currency-converter__card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.04);
    border: 1px solid #e9ecef;
}

@media (max-width: 767px) {
    .currency-converter__card {
        padding: 20px 16px;
        border-radius: 12px;
    }
}

.currency-converter__form {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .currency-converter__form {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
}

.currency-converter__input-group {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 767px) {
    .currency-converter__input-group {
        width: 100%;
        min-width: 0;
    }
}

.currency-converter__input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

@media (max-width: 767px) {
    .currency-converter__input-wrapper {
        gap: 8px;
    }
}

.currency-converter__input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.2s ease;
    background: #fff;
    min-width: 0;
    width: 100%;
}

@media (max-width: 767px) {
    .currency-converter__input {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 8px;
    }
}

.currency-converter__input:focus {
    outline: none;
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.currency-converter__input--result {
    background: linear-gradient(135deg, #fff7f0, #ffffff);
    color: #ff7a00;
    font-weight: 800;
    cursor: default;
}

.currency-converter__select {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .currency-converter__select {
        min-width: 100px;
        padding: 12px 14px;
        padding-right: 32px;
        font-size: 14px;
        border-radius: 8px;
        background-position: right 10px center;
    }
}

.currency-converter__select:focus {
    outline: none;
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.currency-converter__swap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    color: #666;
}

.currency-converter__swap:hover {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #fff;
    transform: rotate(180deg);
}

.currency-converter__swap:active {
    transform: rotate(180deg) scale(0.95);
}

@media (max-width: 767px) {
    .currency-converter__swap {
        width: 100%;
        height: 44px;
        margin: 4px 0;
        border-radius: 8px;
        order: 2;
    }
    
    .currency-converter__swap svg {
        width: 18px;
        height: 18px;
    }
}

.currency-converter__rate-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 767px) {
    .currency-converter__rate-info {
        margin-top: 12px;
        padding-top: 12px;
        font-size: 13px;
    }
}

.currency-table-section {
    margin: 48px 0;
}

@media (max-width: 767px) {
    .currency-table-section {
        margin: 32px 0;
    }
}

.currency-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .currency-table-header {
        flex-direction: column;
        align-items: stretch;
    }
}

.currency-table-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.currency-table-search {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

@media (max-width: 767px) {
    .currency-table-search {
        width: 100%;
        max-width: none;
    }
}

.currency-table-search__input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #fff;
}

.currency-table-search__input:focus {
    outline: none;
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.currency-table-search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-table-search__icon svg {
    width: 100%;
    height: 100%;
}

.currency-table-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-table-filter:hover {
    border-color: #ff7a00;
    color: #ff7a00;
}

.currency-table-filter svg {
    transition: transform 0.2s ease;
}

.currency-table-filter.active svg {
    transform: rotate(180deg);
}

.currency-table-filters {
    display: none;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.currency-table-filters--active {
    display: block;
}

.currency-table-filters__group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.currency-table-filters__label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.currency-table-filters__options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.currency-table-filters__option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.currency-table-filters__checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff7a00;
}

.currency-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #e9ecef;
    background: #fff;
}

.currency-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 700px;
}

.currency-table thead {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.currency-table th {
    padding: 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e9ecef;
    white-space: nowrap;
}

.currency-table__sortable {
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
    position: relative;
    padding-right: 24px;
}

.currency-table__sortable:hover {
    background: rgba(255, 122, 0, 0.05);
}

.currency-table__sort-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ff7a00;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.currency-table__sortable:hover .currency-table__sort-icon {
    opacity: 0.5;
}

.currency-table__sort-icon--asc,
.currency-table__sort-icon--desc {
    opacity: 1;
}

.currency-table td {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    transition: background 0.15s ease;
}

.currency-table tbody tr {
    transition: all 0.15s ease;
}

.currency-table tbody tr:hover {
    background: #f8f9fa;
}

.currency-table tbody tr:last-child td {
    border-bottom: none;
}

.currency-table__code {
    font-weight: 700;
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

.currency-table__nominal {
    color: #666;
    font-weight: 600;
}

.currency-table__name {
    color: #000;
    font-weight: 500;
}

.currency-table__value {
    font-weight: 700;
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

.currency-table__change {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
}

.currency-table__change--up {
    color: #16a34a;
}

.currency-table__change--down {
    color: #dc2626;
}

.currency-table__change-icon {
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.currency-table__percent {
    font-weight: 700;
    font-size: 14px;
}

.currency-table__percent--up {
    color: #16a34a;
}

.currency-table__percent--down {
    color: #dc2626;
}

.currency-table-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .currency-table th,
    .currency-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .currency-table__code {
        font-size: 12px;
    }
    
    .currency-table__value {
        font-size: 12px;
    }
    
    .currency-table__change,
    .currency-table__percent {
        font-size: 11px;
    }
}

.currency-info {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 48px;
    border: 1px solid #e9ecef;
}

.currency-info__content {
    flex: 1;
}

.currency-info__text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.currency-info__text strong {
    color: #000;
    font-weight: 700;
}

@media (max-width: 767px) {
    .currency-info {
        padding: 16px;
        margin-top: 32px;
    }
    
    .currency-info__text {
        font-size: 13px;
    }
}

.currency-refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid #e65c00;
    border-radius: 10px;
    color: #e65c00;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 16px;
}

.currency-refresh-btn:hover {
    background: #e65c00;
    color: #fff;
}

.currency-refresh-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.currency-refresh-btn svg {
    transition: transform 0.3s ease;
}

.currency-refresh-btn.loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .currency-refresh-btn {
        margin-left: 0;
        margin-top: 12px;
        padding: 8px 14px;
        font-size: 13px;
    }
}

.currency-charts {
    margin: 48px 0;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
}

@media (max-width: 767px) {
    .currency-charts {
        margin: 32px 0;
        padding: 16px;
        border-radius: 12px;
    }
}

.currency-charts-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
}

.currency-charts-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.currency-charts-tab:hover {
    color: #e65c00;
    background: rgba(230, 92, 0, 0.05);
}

.currency-charts-tab.active {
    color: #fff;
    background: #e65c00;
}

@media (max-width: 767px) {
    .currency-charts-tabs {
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .currency-charts-tab {
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
    }
}

.currency-charts-container {
    height: 300px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .currency-charts-container {
        height: 250px;
    }
}

.currency-charts-period {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.currency-charts-period-btn {
    padding: 8px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-charts-period-btn:hover {
    background: #eee;
}

.currency-charts-period-btn.active {
    background: #e65c00;
    color: #fff;
}

.content__sidebar .wek-sidebar-block {
    margin-bottom: 20px;
}

.content__sidebar .wek-sidebar-block:last-child {
    margin-bottom: 0;
}

.content__sidebar .wek-sidebar-block__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.content__sidebar .wek-sidebar-block__title a:hover {
    color: #e65c00;
}

@media (max-width: 1023px) {
    .content__sidebar {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (min-width: 1024px) {
    .content__sidebar {
        padding-top: 15%;
    }
}

