@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SFPRODISPLAYBLACKITALIC.OTF") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SFPRODISPLAYHEAVYITALIC.OTF") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SFPRODISPLAYLIGHTITALIC.OTF") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SFPRODISPLAYMEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SFPRODISPLAYSEMIBOLDITALIC.OTF") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SFPRODISPLAYTHINITALIC.OTF") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../font/SFPRODISPLAYULTRALIGHTITALIC.OTF") format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  font-family: inherit;
  box-sizing: border-box;
}

:root {
  --skl-container-padding-x: 1.6rem;
  --skl-container-max-width: calc(
      1216px + var(--skl-container-padding-x) * 2
  );
  --skl-color-white: #fff;
  --skl-color-neutral-100: #f8f9fc;
  --skl-color-neutral-200: #f1f3f9;
  --skl-color-neutral-300: #e1e6ef;
  --skl-color-neutral-700: #3f444d;
  --skl-color-neutral-800: #1f242d;
  --skl-color-neutral-900: #1b1f27;
  --skl-color-black: #1d2433;
  --skl-color-primary-100: #fef2e6;
  --skl-color-primary-600: #fd5e04;
  --skl-color-primary-700: #ca4b02;
  --skl-color-primary-800: #983801;
  --skl-color-success-700: #08875d;
  --skl-color-danger-700: #e02d3c;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "SF Pro Display", sans-serif;
  background-color: var(--skl-color-neutral-100);
  color: var(--skl-color-black);
  min-height: 100vh;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

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

hr {
  border-color: rgba(0, 0, 0, 0.12);
}

.skl-container {
  width: 100%;
  max-width: var(--skl-container-max-width);
  padding: 0 var(--skl-container-padding-x);
  margin: 0 auto;
}

.skl-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;
}
.skl-btn--primary {
  background-color: var(--skl-color-primary-600);
  color: var(--skl-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;
}
.skl-btn--primary:hover {
  background-color: var(--skl-color-primary-800);
}
.skl-btn--secondary {
  background-color: transparent;
  color: var(--skl-color-white);
  border-radius: 8px;
}
.skl-btn--secondary:hover {
  background-color: var(--skl-color-primary-800);
}
.skl-btn--secondary:active {
  background-color: var(--skl-color-primary-900);
}
.skl-btn--text {
  color: var(--skl-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;
}
.skl-btn--text:hover {
  border-bottom-color: var(--skl-color-primary-800);
  color: var(--skl-color-primary-800);
}
.skl-btn--text:active {
  background-color: var(--skl-color-primary-100);
}
.skl-btn--icon {
  padding: 1.2rem;
  border-radius: 8px;
  aspect-ratio: 1;
  border: 1px solid var(--skl-color-neutral-700);
}
.skl-btn--icon:hover {
  border-color: var(--skl-color-primary-600);
  background-color: var(--skl-color-primary-600);
}
.skl-btn--icon svg {
  width: 1.6rem;
  height: 1.6rem;
}
.skl-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;
}

.skl-category {
  display: flex;
  padding: 0.4rem 1.2rem;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  border-radius: 4px;
  background: var(--skl-color-primary-600);
  color: var(--skl-color-white);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6rem;
  letter-spacing: 0.28px;
  text-transform: capitalize;
  text-align: center;
}

.skl-news-card {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  cursor: pointer;
}
.skl-news-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow: hidden;
}
.skl-news-card__category-date {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-wrap: nowrap;
}
.skl-news-card__date {
  color: var(--skl-color-neutral-700);
  font-size: 1.4rem;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
}
.skl-news-card__separator {
  width: 1px;
  height: 10px;
  background-color: rgba(29, 36, 51, 0.65);
}
.skl-news-card__title {
  color: var(--skl-color-black);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 125%;
}
.skl-news-card__excerpt {
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
}
.skl-news-card__thumbnail {
  width: 100%;
  flex: 0 0 92px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--skl-color-neutral-300);
}
.skl-news-card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.skl-news-card:hover .skl-news-card__thumbnail img {
  transform: scale(1.05);
}

.skl-input {
  width: 100%;
  display: flex;
  border-radius: 8px;
  border: 1px solid var(--skl-color-neutral-700);
  background-color: var(--skl-color-white);
  min-height: 4rem;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.skl-input:focus-within {
  border-color: var(--skl-color-primary-700);
}
.skl-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;
}
.skl-input__btn-submit:hover {
  background-color: var(--skl-color-primary-700);
  color: var(--skl-color-white);
}
.skl-input__btn-submit svg {
  flex: 0 0 1.6rem;
}
.skl-input > input {
  width: 100%;
  border: none;
  outline: none;
  color: var(--skl-color-black);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  background-color: transparent;
  padding-left: 0.8rem;
  padding-right: 1.6rem;
}
.skl-input > input::-moz-placeholder {
  color: rgba(29, 36, 51, 0.8);
}
.skl-input > input::placeholder {
  color: rgba(29, 36, 51, 0.8);
}

.skl-search-bar {
  display: flex;
  gap: 0.8rem;
}
.skl-search-bar form {
  display: flex;
  gap: 0.8rem;
  background: var(--skl-color-neutral-900);
  padding: 2.4rem var(--skl-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;
}
.skl-search-bar__trigger {
  display: flex;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  pointer-events: all;
}
.skl-search-bar.active form {
  transform: translateX(0);
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  pointer-events: all;
}
.skl-search-bar.active > .skl-search-bar__trigger {
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .skl-search-bar__trigger {
    display: none;
  }
  .skl-search-bar form {
    position: static;
    transform: translateX(0);
    -webkit-user-select: all;
       -moz-user-select: all;
            user-select: all;
    pointer-events: all;
    padding: 0;
  }
  .skl-search-bar form .skl-btn {
    display: none;
  }
  .skl-search-bar .skl-input {
    background-color: transparent;
  }
  .skl-search-bar .skl-input__btn-submit {
    color: var(--skl-color-white);
    border-right: 1px solid var(--skl-color-neutral-700);
  }
  .skl-search-bar .skl-input > input {
    color: var(--skl-color-white);
  }
  .skl-search-bar .skl-input > input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.75);
  }
  .skl-search-bar .skl-input > input::placeholder {
    color: rgba(255, 255, 255, 0.75);
  }
}

.skl-header {
  display: flex;
  flex-direction: column;
  background: var(--skl-color-neutral-900);
}
.skl-header__top {
  padding: 2.4rem 0;
}
.skl-header__top-container {
  display: flex;
  justify-content: space-between;
}
.skl-header__left {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.skl-header__logo {
  aspect-ratio: 2/1;
  width: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skl-header__logo a,
.skl-header__logo img {
  width: 100%;
}
.skl-header__top-menu {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.skl-header__top-menu li a {
  color: var(--skl-color-neutral-100);
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.skl-header__top-menu li a:hover {
  background-color: var(--skl-color-neutral-800);
}
.skl-header__bottom {
  padding: 0.8rem 0;
  background: var(--skl-color-neutral-800);
}
.skl-header__bottom-container {
  overflow-x: auto;
  display: flex;
  gap: 0.8rem;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.skl-header__bottom-container::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .skl-header__bottom {
    display: none;
  }
}
@media (min-width: 768px) {
  .skl-header__bottom-container {
    justify-content: space-between;
  }
}
.skl-header__bottom-menu {
  display: flex;
  gap: 0.8rem;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.skl-header__bottom-menu li {
  flex-shrink: 0;
}
.skl-header__bottom-menu a {
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .skl-header__bottom-menu {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .skl-header .skl-mobile-menu-toggle {
    display: none;
  }
}

.skl-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.skl-mobile-menu.active {
  visibility: visible;
  opacity: 1;
}
.skl-mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.skl-mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--skl-color-neutral-900);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2rem;
  box-sizing: border-box;
}
.skl-mobile-menu.active .skl-mobile-menu__content {
  transform: translateX(0);
}
.skl-mobile-menu__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.skl-mobile-menu__nav {
  margin-bottom: 2rem;
}
.skl-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.skl-mobile-menu__item {
  margin-bottom: 0.5rem;
}
.skl-mobile-menu__link {
  display: block;
  color: var(--skl-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;
}
.skl-mobile-menu__link:hover {
  background-color: var(--skl-color-neutral-800);
  border-color: var(--skl-color-neutral-700);
}
.skl-mobile-menu__search {
  display: flex;
  justify-content: flex-end;
}
.skl-mobile-menu__search .skl-search-bar {
  width: 100%;
}
.skl-mobile-menu__search .skl-search-bar form {
  width: 100%;
}
.skl-mobile-menu__search .skl-search-bar .skl-input {
  width: 100%;
}
.skl-mobile-menu__search .skl-search-bar .skl-input input {
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .skl-mobile-menu {
    display: none;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}
@media (min-width: 768px) {
  body.mobile-menu-open {
    overflow: auto;
  }
}

.skl-footer {
  padding: 4rem 0 2rem;
  background-color: var(--skl-color-neutral-900);
  color: #fff;
}
.skl-footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.skl-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .skl-footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.skl-footer__logo {
  aspect-ratio: 2/1;
  width: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skl-footer__logo a,
.skl-footer__logo img {
  width: 100%;
}
.skl-footer__logo .skl-footer-logo-text {
  color: var(--skl-color-primary-600, #fd5e04);
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}
.skl-footer__logo .skl-footer-logo-text:hover {
  color: var(--skl-color-primary-700, #e0540d);
}
.skl-footer__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .skl-footer__nav {
    justify-content: flex-start;
    margin-left: 4rem;
  }
}
.skl-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .skl-footer__menu {
    flex-direction: row;
    gap: 2rem;
    text-align: left;
  }
}
.skl-footer__menu-item {
  margin: 0;
  padding: 0;
}
.skl-footer__menu-link {
  color: var(--skl-color-neutral-300, #d1d5db);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  transition: color 0.3s ease;
}
.skl-footer__menu-link:hover {
  color: var(--skl-color-primary-600, #fd5e04);
}
.skl-footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.skl-footer__social .social-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--skl-color-neutral-800);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.skl-footer__social .social-icon:hover {
  background-color: var(--skl-color-primary-600, #fd5e04);
}
.skl-footer__bottom {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--skl-color-neutral-800);
}
.skl-footer__copyright {
  color: var(--skl-color-neutral-400, #9ca3af);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
}
@media (max-width: 767px) {
  .skl-footer {
    padding: 3rem 0 2rem;
  }
  .skl-footer__content {
    gap: 2rem;
  }
  .skl-footer__menu {
    gap: 1.5rem;
  }
  .skl-footer__menu-link {
    font-size: 1.6rem;
  }
}

.skl-pagination {
  margin: 4rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.skl-pagination__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.skl-pagination__list li {
  list-style: none;
}
.skl-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(--skl-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;
}
.skl-pagination__item:not(.skl-pagination__item--dots):hover {
  background-color: var(--skl-color-primary-800);
  color: var(--skl-color-white);
}
.skl-pagination__item--active {
  background-color: var(--skl-color-primary-600);
  color: var(--skl-color-white);
}
.skl-pagination__item--dots {
  cursor: default;
  background-color: transparent;
}

.skl-stock-exchange-quotes ul {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.skl-stock-exchange-quotes ul::-webkit-scrollbar {
  display: none;
}
.skl-stock-exchange-quotes .quotes {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-right: 1px solid #aea8bb;
  background: var(--skl-color-neutral-200);
  text-wrap: nowrap;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6rem;
}
.skl-stock-exchange-quotes .quotes__ticket {
  color: #1b1822;
}
.skl-stock-exchange-quotes .quotes__price {
  color: #3a3446;
  font-weight: 400;
}
.skl-stock-exchange-quotes .quotes__variation--positive {
  color: #22b573;
}
.skl-stock-exchange-quotes .quotes__variation--negative {
  color: #e02d3c;
}

.skl-section-posts__container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem 0;
}
.skl-section-posts__container > .skl-btn {
  margin-left: auto;
  margin-top: 0.8rem;
}
.skl-section-posts__posts {
  display: flex;
  flex-direction: column;
}
.skl-section-posts__posts .skl-news-card {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.skl-section-posts__posts .skl-news-card:first-child {
  padding-top: 0;
  border-top: none;
}
.skl-section-posts__posts .skl-news-card:last-child {
  padding-bottom: 0;
}
.skl-section-posts__posts .skl-news-card__excerpt {
  display: none;
}
@media (min-width: 768px) {
  .skl-section-posts .skl-section-posts__container {
    padding: 4.8rem 0;
    display: grid;
  }
  .skl-section-posts .skl-section-posts__container h2 {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 4.8rem;
    letter-spacing: -1px;
  }
  .skl-section-posts .skl-section-posts__container > .skl-btn {
    grid-column: 2/3;
    margin-top: 0;
    align-self: center;
  }
  .skl-section-posts .skl-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;
  }
  .skl-section-posts .skl-section-posts__posts > .skl-btn {
    align-self: center;
  }
  .skl-section-posts .skl-section-posts__posts .skl-news-card {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: stretch;
    border: none;
    padding: 0;
  }
  .skl-section-posts .skl-section-posts__posts .skl-news-card__content {
    flex: none;
  }
  .skl-section-posts .skl-section-posts__posts .skl-news-card__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
  }
  .skl-section-posts .skl-section-posts__posts .skl-news-card__thumbnail {
    flex: none;
    width: 100%;
    aspect-ratio: 286/190;
  }
}

.skl-home .recent-news-section__container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 2.4rem 0;
}
.skl-home .recent-news-section__last-news .skl-news-card {
  flex-direction: column;
  align-items: flex-start;
}
.skl-home .recent-news-section__last-news .skl-news-card__content {
  gap: 1.6rem;
}
.skl-home .recent-news-section__last-news .skl-news-card__thumbnail {
  flex: 1;
  aspect-ratio: 343/200;
}
.skl-home .recent-news-section__last-news .skl-news-card__excerpt {
  display: none;
}
.skl-home .recent-news-section__news {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.skl-home .indicators-section {
  padding: 3.2rem 0;
}
.skl-home .indicators-section__container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.skl-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);
}
.skl-home .indicators-section .currencies h4 {
  color: var(--text-icon-primary-black, #1d2433);
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.skl-home .indicators-section .currencies table {
  width: 100%;
  border-collapse: collapse;
}
.skl-home .indicators-section .currencies table th + th,
.skl-home .indicators-section .currencies table td + td {
  padding-left: 1.6rem;
}
.skl-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;
}
.skl-home .indicators-section .currencies table thead tr th:first-child {
  text-align: left;
}
.skl-home .indicators-section .currencies table tbody tr + tr {
  padding: 1.2rem;
}
.skl-home .indicators-section .currencies__currency {
  color: rgba(29, 36, 51, 0.8);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.skl-home .indicators-section .currencies__currency strong {
  color: var(--skl-color-black);
  font-weight: 600;
}
.skl-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;
}
.skl-home .indicators-section .currencies__value strong {
  color: var(--skl-color-black);
  font-weight: 600;
}
.skl-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);
}
.skl-home .indicators-section .cryptos h4 {
  color: var(--text-icon-primary-black, #1d2433);
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.skl-home .indicators-section .cryptos table {
  width: 100%;
  border-collapse: collapse;
}
.skl-home .indicators-section .cryptos table td + td {
  padding-left: 1.6rem;
}
.skl-home .indicators-section .cryptos table tbody tr + tr {
  padding: 1.2rem;
}
.skl-home .indicators-section .cryptos__crypto {
  color: rgba(29, 36, 51, 0.8);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.skl-home .indicators-section .cryptos__crypto strong {
  color: var(--skl-color-black);
  font-weight: 600;
}
.skl-home .indicators-section .cryptos__variation {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6rem;
}
.skl-home .indicators-section .cryptos__variation--positive {
  color: var(--skl-color-success-700);
}
.skl-home .indicators-section .cryptos__variation--negative {
  color: var(--skl-color-danger-700);
}
.skl-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;
}
.skl-home .indicators-section .cryptos__value strong {
  color: var(--skl-color-black);
  font-weight: 600;
}
@media (max-width: 1024px) {
  .skl-home .recent-news-section__last-news .skl-category {
    background-color: transparent;
    padding: 0;
    color: var(--skl-color-primary-700);
  }
  .skl-home .recent-news-section__news .skl-news-card__excerpt {
    display: none;
  }
}
@media (min-width: 1024px) {
  .skl-home .recent-news-section__container {
    flex-direction: row;
    padding: 3.2rem 0 5.2rem;
  }
  .skl-home .recent-news-section__last-news {
    flex: 1;
  }
  .skl-home .recent-news-section__last-news .skl-news-card__title {
    font-size: 3.6rem;
    line-height: 4.8rem;
    letter-spacing: -1px;
  }
  .skl-home .recent-news-section__last-news .skl-news-card__thumbnail {
    aspect-ratio: 592/388;
  }
  .skl-home .recent-news-section__news {
    flex: 1;
    gap: 0;
  }
  .skl-home .recent-news-section__news .skl-news-card {
    display: flex;
    align-items: flex-start;
    padding: 2.4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .skl-home .recent-news-section__news .skl-news-card:first-child {
    padding-top: 0;
    border-top: none;
  }
  .skl-home .recent-news-section__news .skl-news-card:last-child {
    padding-bottom: 0;
    display: none;
  }
  .skl-home .recent-news-section__news .skl-news-card__content {
    display: grid;
  }
  .skl-home .recent-news-section__news .skl-news-card__category-date {
    grid-row: 3/4;
  }
  .skl-home .recent-news-section__news .skl-news-card__title {
    grid-row: 1/2;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3.2rem;
  }
  .skl-home .recent-news-section__news .skl-news-card__excerpt {
    grid-row: 2/3;
    display: block;
  }
  .skl-home .recent-news-section__news .skl-news-card__thumbnail {
    flex: 0 0 172px;
    aspect-ratio: 172/122;
  }
}

.skl-single__content {
  padding: 3.2rem 0;
}
.skl-single__content aside {
  display: none;
}
.skl-single__post {
  display: flex;
  flex-direction: column;
}
.skl-single__post h2,
.skl-single__post h3,
.skl-single__post h4,
.skl-single__post h5,
.skl-single__post h6 {
  color: #000;
}
.skl-single__post h2 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -1px;
}
.skl-single__post h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: -1px;
}
.skl-single__post-header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 3.2rem;
}
.skl-single__post-title {
  color: var(--skl-color-black);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
}
.skl-single__post-excerpt {
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
}
.skl-single__post-metadata {
  color: rgba(29, 36, 51, 0.65);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
}
.skl-single__post-thumbnail {
  width: 100%;
  margin-top: 0.8rem;
}
.skl-single__post-thumbnail img {
  aspect-ratio: 343/250;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.skl-single__post-thumbnail figcaption {
  color: rgba(29, 36, 51, 0.651);
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 140%;
}
.skl-single__post-content {
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
  padding: 1.6rem 0;
}
.skl-single__post-content p,
.skl-single__post-content ol,
.skl-single__post-content ul {
  margin-bottom: 2.4rem;
}
.skl-single__post-content ol,
.skl-single__post-content ul {
  list-style-position: inside;
}
.skl-single__post-content li + li {
  margin-top: 1rem;
}
.skl-single__post-content h1,
.skl-single__post-content h2,
.skl-single__post-content h3,
.skl-single__post-content h4,
.skl-single__post-content h5,
.skl-single__post-content h6 {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .skl-single .skl-container {
    display: flex;
    gap: 2.4rem;
    justify-content: center;
  }
  .skl-single__content {
    padding-bottom: 4.8rem;
  }
  .skl-single__content aside {
    display: block;
  }
  .skl-single__post {
    max-width: 728px;
  }
  .skl-single__post-title {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 4.8rem;
  }
  .skl-single__post-thumbnail {
    margin-bottom: 3.2rem;
  }
  .skl-single__post-thumbnail img {
    aspect-ratio: 728/388;
  }
}

.skl-archive {
  padding: 3.2rem 0;
}
.skl-archive__title {
  margin-bottom: 3.2rem;
}
.skl-archive__title > span {
  display: block;
  color: rgba(29, 36, 51, 0.8);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.skl-archive__title h1 {
  color: var(--skl-color-black);
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.skl-archive__title h1 span {
  color: var(--skl-color-primary-600);
}
.skl-archive__posts-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(298px, 1fr));
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .skl-archive__title h1 {
    font-size: 3.6rem;
    line-height: 4.8rem;
  }
  .skl-archive .skl-news-card {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: stretch;
    border: none;
    padding: 0;
  }
  .skl-archive .skl-news-card__content {
    flex: none;
  }
  .skl-archive .skl-news-card__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
  }
  .skl-archive .skl-news-card__thumbnail {
    flex: none;
    width: 100%;
    aspect-ratio: 286/190;
  }
}

.skl-search {
  padding: 3.2rem 0;
  flex: 1;
}
.skl-search__title {
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.skl-search__title h1 {
  color: var(--skl-color-black);
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.skl-search__title h1 span {
  color: var(--skl-color-primary-600);
}
.skl-search__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.skl-search .result-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .skl-search__title h1 {
    font-size: 3.6rem;
    line-height: 4.8rem;
  }
  .skl-search .skl-news-card {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: stretch;
    border: none;
    padding: 0;
  }
  .skl-search .skl-news-card__content {
    flex: none;
  }
  .skl-search .skl-news-card__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
  }
  .skl-search .skl-news-card__thumbnail {
    flex: none;
    width: 100%;
    aspect-ratio: 286/190;
  }
}/*# sourceMappingURL=style.css.map */