.hero-desktop {
  display: flex;
}

.hero-mobile {
  display: none;
}

.landing-hero {
  width: 100%;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 24px;
}

.landing-page {
  display: flex;
  margin-top: 24px;
  margin-bottom: 32px;
  justify-content: space-between;
}
.landing-page .articles-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  flex: 2;
  max-width: 64%;
}
.landing-page .articles-wrapper .dc-post-wrapper {
  flex: 0 0 calc(49% - 16px);
  background-color: #EFEFEF;
  max-height: 470px;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-image-wrapper {
  display: flex;
  flex: 1 42%;
  align-items: center;
  justify-content: center;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-image-wrapper picture {
  display: flex !important;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper {
  display: flex;
  background-color: #EFEFEF;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 8px;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper .dc-post-category {
  font-size: 13px;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper .dc-post-category a {
  font-weight: 700;
  padding: 5px 10px;
  text-transform: uppercase;
  color: #111111;
  background-color: #DDDDDD;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper .dc-post-author-date-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper .dc-post-author-date-wrapper .dc-post-author {
  color: black;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper h3 {
  margin: 0;
  line-height: 20px;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper:nth-child(odd) {
  background-color: rgba(221, 221, 221, 0.15);
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper .dc-title-link {
  font-size: 20px;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper .dc-title-link:hover {
  color: black;
}
.landing-page .articles-wrapper .dc-post-wrapper .dc-post-content-wrapper .dc-post-excerpt p {
  line-height: 18px;
}
.landing-page .ad-wrapper {
  flex: 1;
  max-width: 33.333%;
  position: sticky;
  top: 0;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

@keyframes flicker {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(1deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(-1deg);
    opacity: 1;
  }
}
#pr-ct-button-row {
  justify-content: space-between;
}
#pr-ct-button-row .pr-btn {
  background-color: #F7BE23;
  width: 226px;
  text-transform: none !important;
}

.section-title-wrapper {
  color: #F7BE23;
  font-weight: 900;
  font-size: 24px;
  background-color: #ffffff;
  padding: 16px 48px;
  box-shadow: 0 6px 18px 0 rgba(48, 48, 48, 0.1);
  max-width: -moz-max-content;
  max-width: max-content;
  position: absolute;
  top: -32px;
  left: 48px;
}

.latest-news_koko {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 48px 24px 24px 24px;
  border: 2px solid black;
}
.latest-news_koko .modern-item-wrapper:nth-child(-n+4) {
  border-bottom: 1px solid black;
}
.latest-news_koko .modern-item-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  background-color: #FFFFFF !important;
}
.latest-news_koko .modern-item-wrapper .dc-post-image-wrapper {
  flex: 0 0 25%;
  max-width: 25%;
}
.latest-news_koko .modern-item-wrapper .dc-post-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-news_koko .modern-item-wrapper .post-content-wrapper {
  flex: 1;
  padding-top: 0 !important;
}
.latest-news_koko .modern-item-wrapper .post-content-wrapper h3 {
  margin: 0 !important;
}

.button-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.button-row .read-more-btn {
  color: #ffffff;
  background-color: #111111;
  border: none;
  text-transform: capitalize;
  padding: 6px 12px;
  font-size: 18px;
  width: 138px;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background-color 0.3s ease-in-out;
}
.button-row .read-more-btn:hover {
  background-color: #999;
}
.button-row .modern-style {
  border-radius: 24px;
  transition: background-color 0.3s ease-in-out;
  margin-bottom: 32px;
}
.button-row .modern-style:hover {
  background-color: #F7BE23;
}

.slick-prev, .slick-next {
  width: 56px !important;
  height: 56px !important;
}

.slick-next {
  right: 6px !important;
}

.slick-prev {
  left: 6px !important;
  z-index: 9;
}

.slick-next:before, .slick-prev:before {
  font-size: 56px !important;
}

.slick-track {
  display: flex !important;
  gap: 8px !important;
}

.slick-slide {
  height: auto !important;
}

.modern-top-ct {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px !important;
}
.modern-top-ct .articles-list {
  width: 100%;
}
.modern-top-ct .latest-news-ct {
  background-color: #FFFFFF;
}

.main-topic-section {
  width: 100% !important;
}
.main-topic-section h3 {
  margin-bottom: 32px !important;
}
.main-topic-section h4 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.main-topic-section p {
  font-size: 14px;
}
.main-topic-section img {
  max-height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}

.dailycoin-grid h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
  line-height: 20px;
}
.dailycoin-grid .post-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dailycoin-grid .post-excerpt p {
  font-size: 16px;
  line-height: 16px;
  margin-top: 8px;
}

.trending-ct {
  display: flex;
  gap: 8px;
}
.trending-ct .articles-list {
  padding: 0;
  justify-content: flex-start;
}
.trending-ct .articles-list .heading-wrapper {
  display: flex;
  justify-content: flex-end;
  border-bottom: 8px solid #F7BE23;
}
.trending-ct .articles-list .heading-wrapper h3 {
  width: auto;
  background-color: #F7BE23;
  font-size: 14px;
  padding-left: 28px;
  padding-right: 8px;
  margin: 0;
  position: relative;
}
.trending-ct .articles-list .heading-wrapper h3:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 40px;
  height: 100%;
  background-color: inherit;
  transform: skewX(-45deg);
}
.trending-ct .articles-list .heading-wrapper h4:first-child {
  margin-top: 8px;
}
.trending-ct .articles-list .topics-ul {
  background-color: #EFEFEF;
  margin-top: 0;
  margin-bottom: 0;
}
.trending-ct .articles-list .topics-ul li .bottom-border {
  border-bottom: 8px solid #F7BE23;
  width: 100%;
  margin: 0;
}
.trending-ct .articles-list .topics-ul li .content-wrapper {
  padding: 0px 8px 16px 8px;
}
.trending-ct .articles-list .topics-ul li .content-wrapper h4 a {
  font-size: 26px;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trending-ct .articles-list .topics-ul li .content-wrapper .post-excerpt p {
  font-size: 16px;
  line-height: 16px;
  height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 8px;
}

.main-topic-section h3, .post-slider h3, .trending-ct h3 {
  color: #111111;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}
.main-topic-section .full-width, .post-slider .full-width, .trending-ct .full-width {
  background-color: #FFFFFF !important;
}
.main-topic-section .full-width .post-content-wrapper, .post-slider .full-width .post-content-wrapper, .trending-ct .full-width .post-content-wrapper {
  padding-top: 0 !important;
}
.main-topic-section .half-width, .post-slider .half-width, .trending-ct .half-width {
  display: none;
}
.main-topic-section .modern-item-wrapper, .post-slider .modern-item-wrapper, .trending-ct .modern-item-wrapper {
  height: auto;
  background-color: #EFEFEF;
}
.main-topic-section .modern-item-wrapper .post-content-wrapper, .post-slider .modern-item-wrapper .post-content-wrapper, .trending-ct .modern-item-wrapper .post-content-wrapper {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.main-topic-section .modern-item-wrapper .post-content-wrapper .post-author-date-wrapper, .post-slider .modern-item-wrapper .post-content-wrapper .post-author-date-wrapper, .trending-ct .modern-item-wrapper .post-content-wrapper .post-author-date-wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: flex-start;
  align-items: center;
}
.main-topic-section .modern-item-wrapper .post-content-wrapper .post-author-date-wrapper p, .post-slider .modern-item-wrapper .post-content-wrapper .post-author-date-wrapper p, .trending-ct .modern-item-wrapper .post-content-wrapper .post-author-date-wrapper p {
  font-size: 13px;
  font-weight: bold;
}
.main-topic-section .modern-item-wrapper .post-content-wrapper h4, .post-slider .modern-item-wrapper .post-content-wrapper h4, .trending-ct .modern-item-wrapper .post-content-wrapper h4 {
  font-size: 26px;
  line-height: 26px;
}
.main-topic-section .modern-item-wrapper .post-content-wrapper .bottom-row, .post-slider .modern-item-wrapper .post-content-wrapper .bottom-row, .trending-ct .modern-item-wrapper .post-content-wrapper .bottom-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
}
.main-topic-section .modern-item-wrapper .post-content-wrapper .bottom-row a, .post-slider .modern-item-wrapper .post-content-wrapper .bottom-row a, .trending-ct .modern-item-wrapper .post-content-wrapper .bottom-row a {
  font-weight: 700;
  color: #111111;
}
.main-topic-section .modern-item-wrapper .post-content-wrapper .bottom-row img, .post-slider .modern-item-wrapper .post-content-wrapper .bottom-row img, .trending-ct .modern-item-wrapper .post-content-wrapper .bottom-row img {
  width: 32px;
  height: 32px;
}

.latest-news-ct {
  order: 2;
}
.latest-news-ct h3 {
  color: #111111;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
}

.editorials-choice-ct {
  background-color: #F7BE23;
}

.blitz-news {
  order: 1;
}
.blitz-news .ct-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blitz-news .ct-title .flame {
  animation: flicker 1s infinite alternate;
}
.blitz-news h3 {
  color: #111111;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 0 !important;
}
.blitz-news h4 {
  color: #111;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin: 0;
}
.blitz-news .blitz-news_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.articles-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  flex: 1;
}
.articles-list .topics-ul {
  display: flex;
  flex-direction: column;
}
.articles-list .topics-ul a {
  color: #111111;
  font-weight: 700;
  font-size: 18px;
}
.articles-list .topics-ul a:hover {
  color: #F7BE23;
}
.articles-list .topics-ul .bottom-border {
  margin-top: 16px;
  margin-bottom: 16px;
  width: 75%;
  border-bottom: 1px solid #dedede;
}
.articles-list .topics-ul li:last-child .bottom-border {
  display: none;
}

@media (max-width: 767px) {
  .modern-top-ct {
    gap: 16px;
  }
  .modern-top-ct .latest-news-ct {
    order: 2;
  }
  .modern-top-ct .editorials-choice-ct {
    order: 1;
  }
  .modern-top-ct .half-width {
    display: block;
  }
  .modern-top-ct li:nth-child(n+5) {
    display: none !important;
  }
  .post-slider:not(.pr-ct) .modern-item-wrapper:nth-child(n+3) {
    display: none;
  }
}
@media (max-width: 480px) {
  .pr-btn {
    width: 190px !important;
    font-size: 16px !important;
    text-wrap: nowrap !important;
  }
  .modern-top-ct {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .modern-top-ct .blitz-news_items {
    gap: 16px;
  }
  .modern-top-ct .blitz-news_items .ct-title {
    margin-top: 24px;
  }
  .modern-top-ct .main-topic-section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 24px;
  }
  .modern-top-ct .main-topic-section .modern-item-wrapper {
    width: 100%;
    margin-bottom: 16px;
    height: auto !important;
  }
  .modern-top-ct .main-topic-section .full-width {
    width: 100%;
    background-color: #111111;
    height: auto;
  }
  .modern-top-ct .main-topic-section .full-width .post-content-wrapper .post-excerpt {
    display: none;
  }
  .modern-top-ct .main-topic-section .full-width .post-content-wrapper h4 {
    color: #111111 !important;
  }
  .modern-top-ct .main-topic-section .full-width .post-content-wrapper .bottom-row {
    display: none;
  }
  .modern-top-ct .main-topic-section .half-width {
    width: calc(50% - 8px);
    margin-bottom: 0 !important;
    background-color: #FFFFFF !important;
  }
  .modern-top-ct .main-topic-section .half-width .post-content-wrapper {
    padding: 0;
  }
  .modern-top-ct .main-topic-section .half-width .post-content-wrapper h4 {
    color: #111;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin: 0;
  }
  .modern-top-ct .main-topic-section .half-width .post-content-wrapper .post-excerpt {
    display: none;
  }
  .modern-top-ct .main-topic-section .half-width .post-content-wrapper .bottom-row {
    justify-content: flex-end;
  }
  .modern-top-ct .main-topic-section .half-width .post-content-wrapper .bottom-row .post-author-date-wrapper {
    display: none;
  }
  .modern-top-ct .main-topic-section .half-width .bottom-row {
    display: none !important;
  }
  .modern-top-ct .articles-list {
    width: 100%;
    background-color: #F7BE23;
    margin-top: 16px;
    padding: 16px;
  }
  .modern-top-ct .articles-list .topics-ul {
    padding-left: 8px;
  }
  .modern-top-ct .articles-list h4 {
    margin-bottom: 16px;
  }
  .modern-top-ct .articles-list .bottom-border {
    border-bottom: 1px solid #FFFFFF;
  }
  .modern-top-ct .articles-list .empty-space {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 991px) {
  .modern-top-ct {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    margin-top: 32px;
    gap: 32px;
  }
  .modern-top-ct .main-topic-section {
    width: 100%;
  }
  .modern-top-ct .main-topic-section .modern-item-wrapper {
    margin-bottom: 16px;
  }
  .modern-top-ct .articles-list {
    grid-column: 1/-1;
    width: 100% !important;
    background-color: #F7BE23;
    padding: 16px;
  }
  .trending-ct .topics-ul {
    border: 8px solid #F7BE23;
  }
}
@media (max-width: 767.98px) {
  .latest-news_koko {
    grid-template-columns: 1fr;
  }
  .latest-news_koko .modern-item-wrapper:nth-child(n+4) {
    border-bottom: none;
    display: none;
  }
  .latest-news_koko .modern-item-wrapper:nth-child(-n+4) {
    display: flex !important;
  }
  .latest-news_koko .modern-item-wrapper .dc-post-image-wrapper {
    flex: 0 0 35%;
    max-width: 35%;
  }
  .latest-news_koko .modern-item-wrapper .post-content-wrapper h3 {
    font-size: 16px;
    line-height: 16px;
  }
  .latest-news_koko .modern-item-wrapper .post-excerpt {
    display: none;
  }
  .hero-desktop {
    display: none;
  }
  .hero-mobile {
    display: flex;
  }
  .landing-hero {
    height: 256px;
  }
  .articles-wrapper {
    flex-direction: column !important;
    max-width: 100% !important;
  }
  .articles-wrapper .dc-post-wrapper {
    flex: auto !important;
  }
  .ad-wrapper {
    display: none !important;
  }
}/*# sourceMappingURL=dailycoin-modern-styles.css.map */