/* TOP-COINS */

.top-coins, .top-coins-items {
  display: flex;
  width: 100%;
  margin: 10px 0;
}

.top-coins-item-50 {
  width: 50%;
}

.top-coins-item-25, .top-coins-2-rows {
  width: 25%;
}

.top-coins-item {
  height: 594px;
  position: relative;
  display: flex;
  background: #000;
  padding: 30px 25px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: 1;
}

.top-coins-item:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0) 0,rgba(0,0,0,.7) 100%);
  z-index: 2;
  pointer-events: none;
}

.top-coins-item-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-coins-item-tag {
  padding: 3px 6px;
  background: #653eef;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
  z-index: 2;
}

.top-coins-item-tag:hover {
  background: #937aee;
}

.top-coins-item-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.top-coins-item-category {
  display: flex;
  align-items: center;
}


.top-coins-item-category a {
  color: #615977;
  font-size: 10px;
  font-weight: 500;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}

.top-coins-item-category a:hover {
  color: #f2f2f2;
  background: #615977;
}

.top-coins-item-date {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
}

.top-coins-item-link {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.top-coins-item-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.top-coins-item-link:hover .top-coins-item-title {
  text-decoration: underline;
}

.top-coins-item-excerpt {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}

.top-coins-item-author {
  width: fit-content;
  background: #171716;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 8px;
  text-transform: uppercase;
  font-size: 12px;
}

.top-coins-item-25 .top-coins-item-author, .top-coins-2-rows .top-coins-item-author {
  background: none;
  color: #fff;
}

.top-coins-2-rows {
  display: flex;
  flex-direction: column;
}

.top-coins-2-rows .top-coins-item {
  height: 50%;
}

.top-coins-2-rows .top-coins-item-title {
  font-size: 14px;
  line-height: 20px;
}

.sponsored {
  margin-left: 10px;
  width: fit-content;
  background: #171716;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 8px;
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .top-coins-item-title {
    font-size: 24px;
  }

  .top-coins-2-rows .top-coins-item-title {
    font-size: 12px;
  }

  .top-coins-item, .top-coins-2-rows {
    width: 33.3% !important;
  }

  .top-coins-2-rows .top-coins-item {
    width: 100% !important;
  }

  .top-coins-item-excerpt {
    display: none;
  }
}


@media (max-width: 767px) {

  .top-coins, .top-coins-items {
    margin-top: 0;
  }

  .container.no-padding-mob {
    padding: 0;
  }

  .primary-nav {
    display: none;
  }

  .top-coins-items {
    flex-direction: column;
  }

  .top-coins-item {
    width: 100% !important;
    padding: 15px !important;
  }

  .top-coins-2-rows {
    width: 100% !important;
  }

  .top-coins-item-50, .top-coins-item-25 {
    height: 423px;
  }

  .top-coins-2-rows .top-coins-item {
    height: 225px;
  }
}

/* ------ TOP-COINS */

/* OTHER POSTS */

.other-post {
  display: flex;
}

.other-posts-item {
  padding: 20px 25px;
  background: #fff;
  border-right: 2px solid #f7f7f8;
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.other-posts-item:last-child {
  border-right: none;
}

.other-posts-item-category {
  display: flex;
  align-items: center;
}

.other-posts-item-category a {
  color: #615977;
  font-size: 10px;
  font-weight: 500;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}

.other-posts-item-category a:hover {
  color: #f2f2f2;
  background: #615977;
}

.other-posts-item-date {
  color: #9995a8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
}

.other-posts-item .sponsored {
  color: #9e9aa5;
  background: #f7f7f8;
  border-radius: 2px;
  padding: 2px 6px;
  font-size: 10px;
}

.other-posts-item-link {
  color: #201838;
  font-size: 14px;
  font-weight: 700;
}

.other-posts-item-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {

  .other-post {
    flex-wrap: wrap;
  }

  .other-posts-item {
    width: 50%;
    border-bottom: 2px solid #f7f7f8;
  }

  .other-posts-item:last-child {
    border-right: 2px solid #f7f7f8;
  }
}

@media (max-width: 767px) {

  .other-post {
    flex-direction: column;
  }

  .other-posts-item {
    width: 100%;
  }
}

/* ------ OTHER POSTS */

/* SITE MAIN */

.site-main {
  margin-top: 20px;
  display: flex;
  gap: 3%;
}

.site-content {
  width: 72%;
}

/* ------ SITE MAIN */

/* MORE NEWS */

.more-news {
  display: flex;
  flex-direction: column;
}

.section-link {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.section-link span {
  color: #511ceb;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-link svg {
  transition: transform 0.2s ease;
}

.section-link:hover svg {
  transform: translateX(5px);
}

.section-link span:hover {
  text-decoration: underline;
}

.more-news-items {
  display: flex;
  margin-top: 10px;
  background: #fff;
  padding: 20px;
  gap: 3%;
}

.more-news-col {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.more-news-item {
  padding-bottom: 15px;
  border-bottom: 2px solid #ececec;
  position: relative;
}

.more-news-item:last-child {
  border-bottom: none;
}

.more-news-item-link {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.more-news-item-img-area {
  position: relative;
  width: 86px;
}

.more-news-item-img-area img {
  height: 63px;
  width: 100%;
  object-fit: cover;
}

.more-news-item-img-area .sponsored {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 !important;
}

.more-news-item-text {
  flex: 1;
}

.more-news-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #201838;
}

.more-news-item-link:hover .more-news-item-title {
  text-decoration: underline;
}

.more-news-item-link:hover .more-news-item-img-area img {
  opacity: 0.7;
}

.more-news-item-category {
  position: absolute;
  left: 101px;
  bottom: 15px;
}

.more-news-item.featured, .more-news-item.featured .more-news-item-link {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.more-news-item.featured img {
  height: 216px;
  width: 100%;
  object-fit: cover;
}

.more-news-item.featured .more-news-item-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #201838;
}

.more-news-item.featured .more-news-item-link:hover .more-news-item-title {
  text-decoration: underline;
}

.more-news-item.featured .more-news-item-link:hover img {
  opacity: 0.7;
}

.more-news-item-exerpt {
  font-size: 14px;
  color: #3b344f;
  font-weight: 400;
}

.more-news-item.featured .more-news-item-category {
  display: flex;
  align-items: center;
  position: relative;
  left: auto;
  bottom: auto;
}

.more-news-item-category a {
  color: #615977;
  font-size: 10px;
  font-weight: 500;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}

.more-news-item-category a:hover {
  color: #f2f2f2;
  background: #615977;
}

.more-news-item-date {
  color: #9995a8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
}

.more-news-item .sponsored {
  color: #9e9aa5;
  background: #f7f7f8;
  border-radius: 2px;
  padding: 2px 6px;
  font-size: 10px;
}

@media (max-width: 1024px) {
  .site-main {
    flex-direction: column;
  }

  .site-content, .right-sidebar {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .more-news-items {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .more-news-col {
    width: 100%;
  }

  .more-news-col:first-child .more-news-item:last-child {
    border-bottom: 2px solid#ececec;
  }
  
  .more-news-item-date {
      font-size: 10px;
  }
}

/* ------ MORE NEWS */

/* CRYPTO GUIDS */

.crypto-guids {
  display: flex;
  flex-direction: column;
  gap: 15%;
  margin-top: 20px;
}

.crypto-guids-items {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  padding: 20px;
  margin-top: 10px;
  background: #fff;
}

.crypto-guids-item {
  width: 47%;
  padding: 15px 0;
  border-bottom: 2px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crypto-guids-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #201838;
}

.crypto-guids-item-title:hover {
  text-decoration: underline;
}

.crypto-guids-item-category a {
  font-size: 10px;
  font-weight: 500;
  color: #615977;
  background: #f2f2f2;
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}

.crypto-guids-item-category a:hover {
  color: #f2f2f2;
  background: #615977;
}


@media (max-width: 767px) {
  .crypto-guids-items {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 15px;
  }

  .crypto-guids-item {
    width: 100%;
  }
}

/* ------ CRYPTO GUIDS */

/* RIGHT SIDEBAR */

.right-sidebar {
  width: 25%;
}

.sidebar-ad {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-title {
  color: rgba(32,24,56,.45);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.ad-img-mob {
  display: none;
}

@media (max-width: 1024px) {
  .right-sidebar {
    display: none;
  }
}

@media (max-width: 767px) {

  .right-sidebar {
    display: block;
    width: 100%;
    margin-top: 20px;
  }

  .sidebar-ad {
    align-items: center;
    justify-content: center;
  }

  .sidebar-title {
    text-align: center;
  }

  .ad-img-desk {
    display: none;
  }

  .ad-img-mob {
    display: block;
  }
}

/* ------ RIGTH SIDEBAR */