*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  font-family: inherit;
  box-sizing: border-box;
}

:root {
  --cc-font-family-base: Arial, system-ui, sans-serif;
  --cc-container-padding-x: 1.6rem;
  --cc-container-max-width: calc(
      1216px + var(--cc-container-padding-x) * 2
  );
  --cc-color-white: #fff;
  --cc-color-neutral-100: #f8f9fc;
  --cc-color-neutral-200: #f1f3f9;
  --cc-color-neutral-300: #e1e6ef;
  --cc-color-neutral-700: #3f444d;
  --cc-color-neutral-800: #1f242d;
  --cc-color-neutral-900: #1b1f27;
  --cc-color-black: #111111;
  --cc-color-primary-100: #f3f3f3;
  --cc-color-primary-600: #cc0000;
  --cc-color-primary-700: #a30000;
  --cc-color-primary-800: #800000;
  --cc-color-primary-900: #660000;
  --cc-color-success-700: #0b7a4b;
  --cc-color-danger-700: #cc0000;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: var(--cc-font-family-base);
  background-color: var(--cc-color-neutral-100);
  color: var(--cc-color-black);
  min-height: 100vh;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--cc-color-primary-600);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

hr {
  border-color: rgba(0, 0, 0, 0.12);
}

.cc-container {
  width: 100%;
  max-width: var(--cc-container-max-width);
  padding: 0 var(--cc-container-padding-x);
  margin: 0 auto;
}

.cc-btn {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s ease-in-out;
}
.cc-btn--primary {
  background-color: var(--cc-color-primary-600);
  color: var(--cc-color-white);
  text-align: center;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.32px;
  text-transform: capitalize;
  padding: 1.2rem 1.6rem;
}
.cc-btn--primary:hover {
  background-color: var(--cc-color-primary-800);
}
.cc-btn--secondary {
  background-color: transparent;
  color: var(--cc-color-white);
  border-radius: 8px;
}
.cc-btn--secondary:hover {
  background-color: var(--cc-color-primary-800);
}
.cc-btn--secondary:active {
  background-color: var(--cc-color-primary-900);
}
.cc-btn--text {
  color: var(--cc-color-primary-600);
  background-color: transparent;
  border: none;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.32px;
  text-transform: capitalize;
  border-bottom: 2px solid transparent;
  padding: 0.4rem 0 0.2rem;
}
.cc-btn--text:hover {
  border-bottom-color: var(--cc-color-primary-800);
  color: var(--cc-color-primary-800);
}
.cc-btn--text:active {
  background-color: var(--cc-color-primary-100);
}
.cc-btn--icon {
  padding: 1.2rem;
  border-radius: 8px;
  aspect-ratio: 1;
  border: 1px solid var(--cc-color-neutral-700);
}
.cc-btn--icon:hover {
  border-color: var(--cc-color-primary-600);
  background-color: var(--cc-color-primary-600);
}
.cc-btn--icon svg {
  width: 1.6rem;
  height: 1.6rem;
}
.cc-btn--small {
  padding: 1rem 1.2rem;
  gap: 0.4rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.024rem;
  text-transform: capitalize;
}

.cc-category {
  display: flex;
  padding: 0.4rem 1.2rem;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  border-radius: 4px;
  background: var(--cc-color-primary-700);
  color: var(--cc-color-white);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6rem;
  letter-spacing: 0.28px;
  text-transform: capitalize;
  text-align: center;
}

.cc-news-card {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  cursor: pointer;
}
.cc-news-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow: hidden;
}
.cc-news-card__category-date {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-wrap: nowrap;
}
.cc-news-card__date {
  color: var(--cc-color-neutral-700);
  font-size: 1.4rem;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cc-news-card__separator {
  width: 1px;
  height: 10px;
  background-color: rgba(29, 36, 51, 0.65);
}
.cc-news-card__title {
  color: var(--cc-color-black);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 125%;
}
.cc-news-card__excerpt {
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
}
.cc-news-card__thumbnail {
  width: 100%;
  flex: 0 0 92px;
  aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--cc-color-neutral-300);
}
.cc-news-card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.cc-news-card:hover .cc-news-card__thumbnail img {
  transform: scale(1.05);
}

.cc-input {
  width: 100%;
  display: flex;
  border-radius: 8px;
  border: 1px solid var(--cc-color-neutral-700);
  background-color: var(--cc-color-white);
  min-height: 4rem;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.cc-input:focus-within {
  border-color: var(--cc-color-primary-700);
}
.cc-input__btn-submit {
  color: rgba(29, 36, 51, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.6rem;
  border-right: 1px solid #bcbcbc;
}
.cc-input__btn-submit:hover {
  background-color: var(--cc-color-primary-700);
  color: var(--cc-color-white);
}
.cc-input__btn-submit svg {
  flex: 0 0 1.6rem;
}
.cc-input > input {
  width: 100%;
  border: none;
  outline: none;
  color: var(--cc-color-black);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  background-color: transparent;
  padding-left: 0.8rem;
  padding-right: 1.6rem;
}
.cc-input > input::-moz-placeholder {
  color: rgba(29, 36, 51, 0.8);
}
.cc-input > input::placeholder {
  color: rgba(29, 36, 51, 0.8);
}

.cc-search-bar {
  display: flex;
  gap: 0.8rem;
}
.cc-search-bar form {
  display: flex;
  gap: 0.8rem;
  background: var(--cc-color-black);
  padding: 2.4rem var(--cc-container-padding-x);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 9;
}
.cc-search-bar__trigger {
  display: flex;
  color: var(--cc-color-white);
  background-color: var(--cc-color-primary-700);
  border-color: var(--cc-color-primary-700);
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  pointer-events: all;
}
.cc-search-bar__trigger:hover {
  background-color: var(--cc-color-primary-700);
  border-color: var(--cc-color-primary-700);
}
.cc-search-bar.active form {
  transform: translateX(0);
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  pointer-events: all;
}
.cc-search-bar.active > .cc-search-bar__trigger {
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .cc-search-bar__trigger {
    display: none;
  }
  .cc-search-bar form {
    position: static;
    transform: translateX(0);
    -webkit-user-select: all;
       -moz-user-select: all;
            user-select: all;
    pointer-events: all;
    padding: 0;
  }
  .cc-search-bar form .cc-btn {
    display: none;
  }
  .cc-search-bar .cc-input {
    background-color: transparent;
  }
  .cc-search-bar .cc-input__btn-submit {
    color: var(--cc-color-white);
    border-right: 1px solid var(--cc-color-neutral-700);
  }
  .cc-search-bar .cc-input > input {
    color: var(--cc-color-white);
  }
  .cc-search-bar .cc-input > input::-moz-placeholder {
    color: var(--cc-color-neutral-200);
  }
  .cc-search-bar .cc-input > input::placeholder {
    color: var(--cc-color-neutral-200);
  }
}

.cc-header {
  display: flex;
  flex-direction: column;
  background: var(--cc-color-black);
}
.cc-header__top {
  padding: 2.4rem 0;
  min-height: 11.6rem;
}
.cc-header__top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cc-header__left {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.cc-header__logo {
  width: 10rem;
  height: 4.3rem;
  flex: 0 0 10rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cc-header__logo a,
.cc-header__logo img {
  width: 100%;
  height: 100%;
}
.cc-header__logo .custom-logo-link {
  width: 100%;
  height: 100%;
  display: block;
  line-height: 0;
}
.cc-header__logo .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cc-logo-text,
.cc-footer-logo-text {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--cc-color-white);
  text-decoration: none;
  display: inline-block;
}
.cc-header__top-menu {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cc-header__top-menu li a {
  color: var(--cc-color-neutral-100);
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.cc-header__top-menu li a:hover {
  background-color: var(--cc-color-primary-700);
}
.cc-header__bottom {
  padding: 0.8rem 0;
  background: var(--cc-color-primary-700);
}
.cc-header__bottom-container {
  overflow-x: auto;
  display: flex;
  gap: 0.8rem;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cc-header__bottom-container::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .cc-header__bottom {
    display: none;
  }
}
@media (min-width: 768px) {
  .cc-header__bottom-container {
    justify-content: space-between;
  }
}
.cc-header__bottom-menu {
  display: flex;
  gap: 0.8rem;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.cc-header__bottom-menu li {
  flex-shrink: 0;
}
.cc-header__bottom-menu a {
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .cc-header__bottom-menu {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .cc-header .cc-mobile-menu-toggle {
    display: none;
  }
}

.cc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.cc-mobile-menu.active {
  visibility: visible;
  opacity: 1;
}
.cc-mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.cc-mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--cc-color-neutral-900);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2rem;
  box-sizing: border-box;
}
.cc-mobile-menu.active .cc-mobile-menu__content {
  transform: translateX(0);
}
.cc-mobile-menu__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.cc-mobile-menu__nav {
  margin-bottom: 2rem;
}
.cc-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cc-mobile-menu__item {
  margin-bottom: 0.5rem;
}
.cc-mobile-menu__link {
  display: block;
  color: var(--cc-color-neutral-100);
  text-decoration: none;
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  border: 1px solid transparent;
}
.cc-mobile-menu__link:hover {
  background-color: var(--cc-color-neutral-800);
  border-color: var(--cc-color-neutral-700);
}
.cc-mobile-menu__search {
  display: flex;
  justify-content: flex-end;
}
.cc-mobile-menu__search .cc-search-bar {
  width: 100%;
}
.cc-mobile-menu__search .cc-search-bar form {
  width: 100%;
}
.cc-mobile-menu__search .cc-search-bar .cc-input {
  width: 100%;
}
.cc-mobile-menu__search .cc-search-bar .cc-input input {
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .cc-mobile-menu {
    display: none;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}
@media (min-width: 768px) {
  body.mobile-menu-open {
    overflow: auto;
  }
}

.cc-footer {
  padding: 4rem 0 2rem;
  background-color: var(--cc-color-neutral-900);
  color: #fff;
}
.cc-footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.cc-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .cc-footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.cc-footer__logo {
  aspect-ratio: 2/1;
  width: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cc-footer__logo a,
.cc-footer__logo img {
  width: 100%;
}
.cc-footer__logo .cc-footer-logo-text {
  color: var(--cc-color-primary-600, #fd5e04);
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}
.cc-footer__logo .cc-footer-logo-text:hover {
  color: var(--cc-color-primary-700, #e0540d);
}
.cc-footer__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .cc-footer__nav {
    justify-content: flex-start;
    margin-left: 4rem;
  }
}
.cc-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .cc-footer__menu {
    flex-direction: row;
    gap: 2rem;
    text-align: left;
  }
}
.cc-footer__menu-item {
  margin: 0;
  padding: 0;
}
.cc-footer__menu-link {
  color: var(--cc-color-neutral-300, #d1d5db);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  transition: color 0.3s ease;
}
.cc-footer__menu-link:hover {
  color: var(--cc-color-primary-600, #fd5e04);
}
.cc-footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.cc-footer__social .social-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cc-color-neutral-800);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cc-footer__social .social-icon:hover {
  background-color: var(--cc-color-primary-600, #fd5e04);
}
.cc-footer__bottom {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--cc-color-neutral-800);
}
.cc-footer__copyright {
  color: var(--cc-color-neutral-400, #9ca3af);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
}
@media (max-width: 767px) {
  .cc-footer {
    padding: 3rem 0 2rem;
  }
  .cc-footer__content {
    gap: 2rem;
  }
  .cc-footer__menu {
    gap: 1.5rem;
  }
  .cc-footer__menu-link {
    font-size: 1.6rem;
  }
}

.cc-pagination {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cc-pagination__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.cc-pagination__list li {
  list-style: none;
}
.cc-pagination__item {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s ease-in-out;
  background-color: var(--cc-color-neutral-200);
  border-radius: 8px;
  padding: 1.2rem 1.6rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.32px;
  text-transform: capitalize;
  cursor: pointer;
}
.cc-pagination__item:not(.cc-pagination__item--dots):hover {
  background-color: var(--cc-color-primary-800);
  color: var(--cc-color-white);
}
.cc-pagination__item--active {
  background-color: var(--cc-color-primary-600);
  color: var(--cc-color-white);
}
.cc-pagination__item--dots {
  cursor: default;
  background-color: transparent;
}

.cc-stock-exchange-quotes ul {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cc-stock-exchange-quotes ul::-webkit-scrollbar {
  display: none;
}
.cc-stock-exchange-quotes .quotes {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-right: 1px solid #aea8bb;
  background: var(--cc-color-neutral-200);
  text-wrap: nowrap;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6rem;
}
.cc-stock-exchange-quotes .quotes__ticket {
  color: #1b1822;
}
.cc-stock-exchange-quotes .quotes__price {
  color: #3a3446;
  font-weight: 400;
}
.cc-stock-exchange-quotes .quotes__variation--positive {
  color: #22b573;
}
.cc-stock-exchange-quotes .quotes__variation--negative {
  color: #e02d3c;
}

.cc-section-posts__container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem 0;
}
.cc-section-posts__container > .cc-btn {
  margin-left: auto;
  margin-top: 0.8rem;
}
.cc-section-posts__posts {
  display: flex;
  flex-direction: column;
}
.cc-section-posts__posts .cc-news-card {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.cc-section-posts__posts .cc-news-card:first-child {
  padding-top: 0;
  border-top: none;
}
.cc-section-posts__posts .cc-news-card:last-child {
  padding-bottom: 0;
}
.cc-section-posts__posts .cc-news-card__excerpt {
  display: none;
}
@media (min-width: 768px) {
  .cc-section-posts .cc-section-posts__container {
    padding: 4.8rem 0;
    display: grid;
  }
  .cc-section-posts .cc-section-posts__container h2 {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 4.8rem;
    letter-spacing: -1px;
  }
  .cc-section-posts .cc-section-posts__container > .cc-btn {
    grid-column: 2/3;
    margin-top: 0;
    align-self: center;
  }
  .cc-section-posts .cc-section-posts__posts {
    display: grid;
    grid-column: 1/3;
    grid-row: 2/3;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.4rem;
  }
  .cc-section-posts .cc-section-posts__posts > .cc-btn {
    align-self: center;
  }
  .cc-section-posts .cc-section-posts__posts .cc-news-card {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: stretch;
    border: none;
    padding: 0;
  }
  .cc-section-posts .cc-section-posts__posts .cc-news-card__content {
    flex: none;
  }
  .cc-section-posts .cc-section-posts__posts .cc-news-card__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
  }
  .cc-section-posts .cc-section-posts__posts .cc-news-card__thumbnail {
    flex: none;
    width: 100%;
    aspect-ratio: 286/190;
  }
}

.cc-home .recent-news-section__container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 2.4rem 0;
}
.cc-home .recent-news-section__last-news .cc-news-card {
  flex-direction: column;
  align-items: flex-start;
}
.cc-home .recent-news-section__last-news .cc-news-card__content {
  gap: 1.6rem;
}
.cc-home .recent-news-section__last-news .cc-news-card__thumbnail {
  flex: 1;
  aspect-ratio: 343/200;
}
.cc-home .recent-news-section__last-news .cc-news-card__excerpt {
  display: none;
}
.cc-home .recent-news-section__news {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.cc-home .indicators-section {
  padding: 3.2rem 0;
}
.cc-home .indicators-section__container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.cc-home .indicators-section .currencies {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.cc-home .indicators-section .currencies h4 {
  color: var(--text-icon-primary-black, #1d2433);
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.cc-home .indicators-section .currencies table {
  width: 100%;
  border-collapse: collapse;
}
.cc-home .indicators-section .currencies table th + th,
.cc-home .indicators-section .currencies table td + td {
  padding-left: 1.6rem;
}
.cc-home .indicators-section .currencies table thead tr th {
  color: rgba(29, 36, 51, 0.8);
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  text-align: right;
}
.cc-home .indicators-section .currencies table thead tr th:first-child {
  text-align: left;
}
.cc-home .indicators-section .currencies table tbody tr + tr {
  padding: 1.2rem;
}
.cc-home .indicators-section .currencies__currency {
  color: rgba(29, 36, 51, 0.8);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.cc-home .indicators-section .currencies__currency strong {
  color: var(--cc-color-black);
  font-weight: 600;
}
.cc-home .indicators-section .currencies__value {
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}
.cc-home .indicators-section .currencies__value strong {
  color: var(--cc-color-black);
  font-weight: 600;
}
.cc-home .indicators-section .cryptos {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.cc-home .indicators-section .cryptos h4 {
  color: var(--text-icon-primary-black, #1d2433);
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.cc-home .indicators-section .cryptos table {
  width: 100%;
  border-collapse: collapse;
}
.cc-home .indicators-section .cryptos table td + td {
  padding-left: 1.6rem;
}
.cc-home .indicators-section .cryptos table tbody tr + tr {
  padding: 1.2rem;
}
.cc-home .indicators-section .cryptos__crypto {
  color: rgba(29, 36, 51, 0.8);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.cc-home .indicators-section .cryptos__crypto strong {
  color: var(--cc-color-black);
  font-weight: 600;
}
.cc-home .indicators-section .cryptos__variation {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6rem;
}
.cc-home .indicators-section .cryptos__variation--positive {
  color: var(--cc-color-success-700);
}
.cc-home .indicators-section .cryptos__variation--negative {
  color: var(--cc-color-danger-700);
}
.cc-home .indicators-section .cryptos__value {
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}
.cc-home .indicators-section .cryptos__value strong {
  color: var(--cc-color-black);
  font-weight: 600;
}
@media (max-width: 1024px) {
  .cc-home .recent-news-section__last-news .cc-category {
    background-color: transparent;
    padding: 0;
    color: var(--cc-color-primary-700);
  }
  .cc-home .recent-news-section__news .cc-news-card__excerpt {
    display: none;
  }
}
@media (min-width: 1024px) {
  .cc-home .recent-news-section__container {
    flex-direction: row;
    padding: 3.2rem 0 5.2rem;
  }
  .cc-home .recent-news-section__last-news {
    flex: 1;
  }
  .cc-home .recent-news-section__last-news .cc-news-card__title {
    font-size: 3.6rem;
    line-height: 4.8rem;
    letter-spacing: -1px;
  }
  .cc-home .recent-news-section__last-news .cc-news-card__thumbnail {
    aspect-ratio: 592/388;
  }
  .cc-home .recent-news-section__news {
    flex: 1;
    gap: 0;
  }
  .cc-home .recent-news-section__news .cc-news-card {
    display: flex;
    align-items: flex-start;
    padding: 2.4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .cc-home .recent-news-section__news .cc-news-card:first-child {
    padding-top: 0;
    border-top: none;
  }
  .cc-home .recent-news-section__news .cc-news-card:last-child {
    padding-bottom: 0;
    display: none;
  }
  .cc-home .recent-news-section__news .cc-news-card__content {
    display: grid;
  }
  .cc-home .recent-news-section__news .cc-news-card__category-date {
    grid-row: 3/4;
  }
  .cc-home .recent-news-section__news .cc-news-card__title {
    grid-row: 1/2;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3.2rem;
  }
  .cc-home .recent-news-section__news .cc-news-card__excerpt {
    grid-row: 2/3;
    display: block;
  }
  .cc-home .recent-news-section__news .cc-news-card__thumbnail {
    flex: 0 0 172px;
    aspect-ratio: 172/122;
  }
}

.cc-single__content {
  padding: 3.2rem 0;
}
.cc-single__content aside {
  display: none;
}
.cc-single__post {
  display: flex;
  flex-direction: column;
}
.cc-single__post h2,
.cc-single__post h3,
.cc-single__post h4,
.cc-single__post h5,
.cc-single__post h6 {
  color: #000;
}
.cc-single__post h2 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1px;
}
.cc-single__post h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: -1px;
}
.cc-single__post-header {
  display: block;
  min-height: 22rem;
  padding-bottom: 3.2rem;
}
.cc-single__hero {
  display: block;
  min-height: 22rem;
  padding-bottom: 3.2rem;
}
.cc-single__breadcrumbs {
  display: block;
  min-height: 2rem;
  margin: 0 0 0.8rem;
  color: rgba(29, 36, 51, 0.7);
  font-size: 1.2rem;
  line-height: 2rem;
}
.cc-single__breadcrumbs:empty {
  display: none;
}
.cc-single__breadcrumbs p,
.cc-single__breadcrumbs nav,
.cc-single__breadcrumbs ol,
.cc-single__breadcrumbs ul {
  margin: 0;
}
.cc-single__post-title {
  color: var(--cc-color-black);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
}
.cc-single__title {
  margin: 0 0 1.2rem;
  color: var(--cc-color-black);
  font-family: var(--cc-font-family-base);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
}
.cc-single__post-excerpt {
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
}
.cc-single__post-metadata {
  color: rgba(29, 36, 51, 0.65);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
}
.cc-single__meta {
  min-height: 1.6rem;
  margin: 0 0 1.2rem;
  color: rgba(29, 36, 51, 0.65);
  font-family: var(--cc-font-family-base);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
}
.cc-single__share {
  min-height: 4rem;
  margin: 0 0 1.2rem;
}
.cc-single__share .cc-share-bar {
  margin: 0;
}
.cc-share-bar {
  width: 100%;
  margin: 0.4rem 0;
}
.cc-share-bar--left .cc-share-bar__list {
  justify-content: flex-start;
}
.cc-share-bar--center .cc-share-bar__list {
  justify-content: center;
}
.cc-share-bar--right .cc-share-bar__list {
  justify-content: flex-end;
}
.cc-share-bar__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cc-share-bar__action {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(29, 36, 51, 0.4);
  color: var(--cc-color-neutral-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.cc-share-bar--small .cc-share-bar__action {
  width: 3.4rem;
  height: 3.4rem;
}
.cc-share-bar__action:hover,
.cc-share-bar__action:focus-visible {
  border-color: var(--cc-color-primary-600);
  color: var(--cc-color-primary-600);
  background-color: var(--cc-color-primary-100);
}
.cc-share-bar__icon,
.cc-share-bar__icon svg,
.cc-share-bar__icon img {
  width: 2rem;
  height: 2rem;
  display: block;
}
.cc-share-bar--small .cc-share-bar__icon,
.cc-share-bar--small .cc-share-bar__icon svg,
.cc-share-bar--small .cc-share-bar__icon img {
  width: 1.8rem;
  height: 1.8rem;
}
.cc-share-bar__status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cc-single__post-thumbnail {
  width: 100%;
  margin: 0;
}
.cc-single__media {
  display: block;
  width: 100%;
  margin: 0 0 1.6rem;
  overflow: hidden;
  aspect-ratio: var(--cc-single-media-ratio, 343 / 250);
}
.cc-single__post-thumbnail img {
  display: block;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cc-single__featured-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cc-single__post-thumbnail figcaption {
  color: rgba(29, 36, 51, 0.651);
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 140%;
}
.cc-single__post-content {
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  padding: 1.6rem 0;
}
.cc-single__post-content p,
.cc-single__post-content ol,
.cc-single__post-content ul {
  margin-bottom: 2.4rem;
}
.cc-single__post-content ol,
.cc-single__post-content ul {
  list-style-position: inside;
}
.cc-single__post-content li + li {
  margin-top: 1rem;
}
.cc-single__post-content h1,
.cc-single__post-content h2,
.cc-single__post-content h3,
.cc-single__post-content h4,
.cc-single__post-content h5,
.cc-single__post-content h6 {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .cc-single .cc-container {
    display: flex;
    gap: 2.4rem;
    justify-content: center;
  }
  .cc-single__content {
    padding-bottom: 4.8rem;
  }
  .cc-single__content aside {
    display: block;
  }
  .cc-single__post {
    max-width: 728px;
  }
  .cc-single__post-header,
  .cc-single__hero {
    min-height: 28rem;
  }
  .cc-single__post-title {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 4.8rem;
  }
  .cc-single__title {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 4.8rem;
  }
  .cc-single__post-thumbnail {
    margin-bottom: 3.2rem;
  }
  .cc-single__media {
    aspect-ratio: var(--cc-single-media-ratio, 728 / 388);
  }
  .cc-single__post-thumbnail img {
    aspect-ratio: 728/388;
  }
  .cc-single__featured-image {
    aspect-ratio: var(--cc-single-media-ratio, 728 / 388);
  }
}

.cc-archive {
  padding: 3.2rem 0;
}
.cc-archive__title {
  margin-bottom: 3.2rem;
}
.cc-archive__title > span {
  display: block;
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.cc-archive__title h1 {
  color: var(--cc-color-black);
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.cc-archive__title h1 span {
  color: var(--cc-color-primary-600);
}
.cc-archive__posts-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(298px, 1fr));
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .cc-archive__title h1 {
    font-size: 3.6rem;
    line-height: 4.8rem;
  }
  .cc-archive .cc-news-card {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: stretch;
    border: none;
    padding: 0;
  }
  .cc-archive .cc-news-card__content {
    flex: none;
  }
  .cc-archive .cc-news-card__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
  }
  .cc-archive .cc-news-card__thumbnail {
    flex: none;
    width: 100%;
    aspect-ratio: 286/190;
  }
}

.cc-search {
  padding: 3.2rem 0;
  flex: 1;
}
.cc-search__title {
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cc-search__title h1 {
  color: var(--cc-color-black);
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.cc-search__title h1 span {
  color: var(--cc-color-primary-600);
}
.cc-search__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.cc-search .result-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .cc-search__title h1 {
    font-size: 3.6rem;
    line-height: 4.8rem;
  }
  .cc-search .cc-news-card {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: stretch;
    border: none;
    padding: 0;
  }
  .cc-search .cc-news-card__content {
    flex: none;
  }
  .cc-search .cc-news-card__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
  }
  .cc-search .cc-news-card__thumbnail {
    flex: none;
    width: 100%;
    aspect-ratio: 286/190;
  }
}

/* Accessibility popup styles (merged from Components/accessibility-popup.css) */
.am24h-accessibility-launcher {
    position: fixed;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    border: 1px solid #c9d3e3;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 700;
    background: #ffffff;
    color: #1d2433;
    box-shadow: 0 12px 30px rgba(8, 21, 41, 0.22);
    cursor: pointer;
}

.am24h-accessibility-launcher--bottom-right {
    right: 20px;
    bottom: 20px;
}

.am24h-accessibility-launcher--bottom-left {
    left: 20px;
    bottom: 20px;
}

.am24h-accessibility-launcher--top-right {
    right: 20px;
    top: 20px;
}

.am24h-accessibility-launcher--top-left {
    left: 20px;
    top: 20px;
}

.am24h-accessibility-launcher__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fd5e04;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.am24h-accessibility-launcher__icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.am24h-accessibility-popup[hidden] {
    display: none !important;
}

.am24h-accessibility-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.am24h-accessibility-popup.is-ready .am24h-accessibility-popup__backdrop,
.am24h-accessibility-popup.is-ready .am24h-accessibility-popup__dialog {
  transition: opacity 180ms ease, transform 220ms ease;
}

.am24h-accessibility-popup .am24h-accessibility-popup__backdrop {
  opacity: 0;
}

.am24h-accessibility-popup .am24h-accessibility-popup__dialog {
  opacity: 0;
  transform: translateY(8px);
}

.am24h-accessibility-popup.is-open .am24h-accessibility-popup__backdrop,
.am24h-accessibility-popup.is-open .am24h-accessibility-popup__dialog {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .am24h-accessibility-popup.is-ready .am24h-accessibility-popup__backdrop,
  .am24h-accessibility-popup.is-ready .am24h-accessibility-popup__dialog {
    transition: none;
  }
}

.am24h-accessibility-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 21, 39, 0.38);
}

.am24h-accessibility-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(420px, calc(100% - 24px));
    max-height: min(82vh, 720px);
    overflow: auto;
    border-radius: 14px;
    border: 1px solid #dbe3f1;
    background: #ffffff;
    color: #1d2433;
    padding: 16px;
    box-shadow: 0 22px 50px rgba(8, 21, 41, 0.28);
    margin: 72px 20px 20px auto;
}

.am24h-accessibility-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.am24h-accessibility-popup__header h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
}

.am24h-accessibility-popup__close {
    border: 1px solid #c8d4e4;
    border-radius: 8px;
    background: #f5f8fc;
    color: #1d2433;
    padding: 8px 10px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
}

.am24h-accessibility-popup__description {
    margin: 0 0 14px;
    color: #3f4b5e;
    font-size: 1.4rem;
    line-height: 1.45;
}

.am24h-accessibility-popup__controls {
    display: grid;
    gap: 12px;
}

.am24h-accessibility-popup__group {
    border: 1px solid #dbe3f1;
    border-radius: 12px;
    padding: 12px;
    background: #f7fafd;
}

.am24h-accessibility-popup__group h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    line-height: 1.2;
}

.am24h-accessibility-popup__control-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.am24h-accessibility-popup__action {
    border: 1px solid #c6d1e2;
    border-radius: 8px;
    background: #ffffff;
    color: #1d2433;
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 700;
    padding: 9px 11px;
    cursor: pointer;
}

.am24h-accessibility-popup__action[aria-pressed="true"],
.am24h-accessibility-popup__action.is-active {
    background: #1d2433;
    color: #ffffff;
    border-color: #1d2433;
}

.am24h-accessibility-popup__action--reset {
    border-color: #e02d3c;
    color: #8d2530;
    background: #fff3f4;
}

.am24h-accessibility-popup__features {
    margin: 14px 0 0;
    padding-left: 18px;
    color: #38465b;
    font-size: 1.3rem;
    line-height: 1.45;
}

.am24h-accessibility-launcher:focus-visible,
.am24h-accessibility-popup__close:focus-visible,
.am24h-accessibility-popup__action:focus-visible,
.am24h-accessibility-popup__dialog:focus-visible {
    outline: 2px solid #fd5e04;
    outline-offset: 2px;
}

body[data-am24h-a11y-font-step="-1"] {
    font-size: 1.5rem;
}

body[data-am24h-a11y-font-step="0"] {
    font-size: 1.6rem;
}

body[data-am24h-a11y-font-step="1"] {
    font-size: 1.7rem;
}

body[data-am24h-a11y-font-step="2"] {
    font-size: 1.8rem;
}

body.am24h-a11y-line-height p,
body.am24h-a11y-line-height li,
body.am24h-a11y-line-height dd,
body.am24h-a11y-line-height dt,
body.am24h-a11y-line-height blockquote {
    line-height: 1.9 !important;
}

body.am24h-a11y-letter-spacing p,
body.am24h-a11y-letter-spacing li,
body.am24h-a11y-letter-spacing a,
body.am24h-a11y-letter-spacing h1,
body.am24h-a11y-letter-spacing h2,
body.am24h-a11y-letter-spacing h3,
body.am24h-a11y-letter-spacing h4,
body.am24h-a11y-letter-spacing h5,
body.am24h-a11y-letter-spacing h6 {
    letter-spacing: 0.035em !important;
}

body.am24h-a11y-readable-font,
body.am24h-a11y-readable-font button,
body.am24h-a11y-readable-font input,
body.am24h-a11y-readable-font textarea,
body.am24h-a11y-readable-font select {
    font-family: Arial, Helvetica, sans-serif !important;
}

body.am24h-a11y-reading-mode .entry-content,
body.am24h-a11y-reading-mode .post,
body.am24h-a11y-reading-mode article,
body.am24h-a11y-reading-mode main {
    max-width: 74ch;
    margin-left: auto;
    margin-right: auto;
}

.am24h-a11y-reading-guide-line,
.am24h-a11y-reading-mask-top,
.am24h-a11y-reading-mask-bottom {
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 9997;
}

.am24h-a11y-reading-guide-line {
    top: var(--am24h-reading-guide-y, 50vh);
    height: 3px;
    transform: translateY(-50%);
    background: rgba(253, 94, 4, 0.8);
}

.am24h-a11y-reading-mask-top {
    top: 0;
    height: calc(var(--am24h-reading-mask-y, 50vh) - 56px);
    background: rgba(0, 0, 0, 0.45);
}

.am24h-a11y-reading-mask-bottom {
    top: calc(var(--am24h-reading-mask-y, 50vh) + 56px);
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

body.am24h-a11y-reading-guide .am24h-a11y-reading-guide-line {
    display: block;
}

body.am24h-a11y-reading-mask .am24h-a11y-reading-mask-top,
body.am24h-a11y-reading-mask .am24h-a11y-reading-mask-bottom {
    display: block;
}

body.am24h-a11y-highlight-links a {
    text-decoration: underline !important;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
}

body.am24h-a11y-highlight-headings h1,
body.am24h-a11y-highlight-headings h2,
body.am24h-a11y-highlight-headings h3,
body.am24h-a11y-highlight-headings h4,
body.am24h-a11y-highlight-headings h5,
body.am24h-a11y-highlight-headings h6 {
    box-shadow: inset 0 -0.4em 0 rgba(253, 94, 4, 0.2);
}

body.am24h-a11y-hide-images main img,
body.am24h-a11y-hide-images main picture,
body.am24h-a11y-hide-images main figure,
body.am24h-a11y-hide-images article img,
body.am24h-a11y-hide-images article picture,
body.am24h-a11y-hide-images article figure {
    display: none !important;
}

body.am24h-a11y-pause-animations *,
body.am24h-a11y-pause-animations *::before,
body.am24h-a11y-pause-animations *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

body.am24h-a11y-high-contrast {
    background: #000000 !important;
    color: #ffffff !important;
}

body.am24h-a11y-high-contrast a {
    color: #7fd0ff !important;
    text-decoration: underline;
}

body.am24h-a11y-reduced-saturation {
    filter: saturate(0.55);
}

body.am24h-a11y-grayscale {
    filter: grayscale(1);
}

@media (max-width: 900px) {
    .am24h-accessibility-popup__dialog {
        margin: auto;
        width: calc(100% - 16px);
        max-height: calc(100vh - 20px);
        top: 10px;
    }
}

@media (max-width: 767px) {
    .am24h-accessibility-launcher--bottom-right,
    .am24h-accessibility-launcher--bottom-left,
    .am24h-accessibility-launcher--top-right,
    .am24h-accessibility-launcher--top-left {
        right: 12px;
        left: auto;
        top: auto;
        bottom: 12px;
    }

    .am24h-accessibility-launcher__label {
        display: none;
    }
}

/*# sourceMappingURL=style.css.map */