@charset "utf-8";

/* CSS Document */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

:root {
  --primary: #e8703c !important;
  --secondary: #1b447a !important;
  --white: #ffffff !important;
  --black: #666666 !important;
  --font-title: "Exo", sans-serif !important;
  --fonts: "Roboto", sans-serif !important;
}

.main-large-trending {
  background-color: var(--white);
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  position: relative;
}

.main-large-trending:hover {
  border: 1px solid var(--primary);
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
}

.large-trending-img {
  border-radius: 10px;
  max-width: 510px;
}

.large-trending-content {
  width: calc(100% - 510px);
  height: auto !important;
  padding: 0 20px;
  text-align: left;
  position: relative;
  display: block;
}

.large-trending-content .title {
  font-size: 24px;
  line-height: 30px;
  color: var(--black);
  font-family: var(--fonts);
  font-weight: 600;
  text-align: left !important;
}

.large-trending-content .date {
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
  font-family: var(--fonts);
  font-weight: 400;
  margin-bottom: 0;
}

.large-trending-content a {
  position: absolute;
  color: var(--primary);
  font-weight: 600;
  bottom: 15px;
  font-size: 18px;
}

.large-trending-content a:hover {
  color: var(--black);
}

.large-trending-content a i {
  margin-left: 5px;
  transition: all 0.3s;
}

.large-trending-content a:hover i {
  margin-left: 10px;
  transition: all 0.3s;
}

.trending {
  width: 100%;
  padding: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  display: flex;
  margin-bottom: 20px;
  transition: all 0.5s;
}

.trending:hover {
  border: 1px solid var(--primary);
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
}

.trending img {
  border-radius: 10px;
  width: 250px;
}

.trending .content {
  width: calc(100% - 250px);
  padding: 0 20px;
  position: relative;
}

.trending .content p {
  text-align: left !important;
  margin-bottom: 0px;
  font-size: 18px;
  height: 100px;
  overflow: hidden;
  color: var(--black);
}

.trending .content a {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  bottom: 10px;
}

.trending .content a:hover {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}

.trending .content a i {
  margin-left: 5px;
  transition: all 0.3s;
}

.trending .content a:hover i {
  margin-left: 10px;
  transition: all 0.3s;
}

/* responsive */

@media only screen and (max-width: 1400px) {
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 1100px) {
}

@media only screen and (max-width: 992px) {
  .large-trending-content .date {
    display: none;
  }

  .large-trending-content a {
    position: static;
  }

  .main-large-trending,
  .trending {
    display: block;
  }

  .large-trending-img,
  .trending img {
    width: 100%;
    max-width: 100%;
  }

  .large-trending-content,
  .trending .content {
    width: 100%;
    margin-top: 15px;
    padding: 0;
  }

  .trending .content p {
    padding: 0;
    font-size: 16px;
  }

  .large-trending-content .title {
    padding: 0;
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 500 !important;
    height: 100px;
    overflow: hidden;
  }

  .trending .content a {
    position: relative;
    bottom: auto;
    margin-top: 15px;
    display: inline-block;
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
}

@media only screen and (max-width: 640px) {
}

@media only screen and (max-width: 600px) {
}

@media only screen and (max-width: 568px) {
}

@media only screen and (max-width: 480px) {
}

@media only screen and (max-width: 360px) {
}
