/**
 *  ==========  CSS
 *
 *  Extra small devices (portrait phones, less than 350px)
 *  No media query since this is the default
 */
/* colors */
/* fonts */
/* gradient red */
body.news .post-article {
  width: 100%; }
  body.news .post-article .article-picture {
    position: relative;
    height: 120px; }
    body.news .post-article .article-picture .public-date {
      position: absolute;
      background-color: #f3f5f5;
      padding: 0.5rem;
      font-size: 14px;
      font-weight: bold;
      text-transform: capitalize;
      line-height: 1em;
      color: white; }
    body.news .post-article .article-picture img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
  body.news .post-article .article-info {
    height: calc(100% - 120px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    body.news .post-article .article-info .info-preview {
      color: #565656;
      font-size: 14px; }
      body.news .post-article .article-info .info-preview h3 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 16px;
        line-height: 1.2em;
        margin: 0.5em 0; }
      body.news .post-article .article-info .info-preview .info-desc {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical; }
  body.news .post-article .buttons {
    text-align: right;
    font-weight: bold;
    margin-top: 0.5rem; }
    body.news .post-article .buttons a {
      color: #f3f5f5; }

body.news .latest-post,
body.news .grid-post {
  margin-bottom: 3rem;
  padding: 0 15px; }
  body.news .latest-post .title h1,
  body.news .latest-post .title h2,
  body.news .grid-post .title h1,
  body.news .grid-post .title h2 {
    color: #f3f5f5;
    margin: 0 0 3rem 0;
    font-size: 32px;
    line-height: 1.2em; }

body.news .latest-post {
  margin-top: 3rem; }
  body.news .latest-post .list-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; }

body.news .grid-post {
  padding: 3rem 0;
  border-top: 1px solid #565656; }
  body.news .grid-post .grid-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; }

body.news.news-single .news-single-back-button {
  margin: 3rem 15px 1.5rem 15px;
  color: #f3f5f5;
  font-weight: bold; }
  body.news.news-single .news-single-back-button::before {
    content: "\f060"; }

body.news.news-single .news-single-wrapper {
  padding: 0 15px;
  margin-bottom: 3rem; }
  body.news.news-single .news-single-wrapper .post-article-single {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #56565640; }
    body.news.news-single .news-single-wrapper .post-article-single .post-article__picture {
      position: relative; }
      body.news.news-single .news-single-wrapper .post-article-single .post-article__picture img {
        width: 100%;
        height: 100%; }
      body.news.news-single .news-single-wrapper .post-article-single .post-article__picture .public-date {
        position: absolute;
        top: 0;
        left: 0;
        background: #f3f5f5;
        color: white;
        padding: 0.5rem; }
    body.news.news-single .news-single-wrapper .post-article-single .post-article__title {
      font-size: 32px;
      line-height: 1.2em;
      margin: 1.5rem 0; }
    body.news.news-single .news-single-wrapper .post-article-single .post-article__content {
      font-size: 14px; }
    body.news.news-single .news-single-wrapper .post-article-single .social-links {
      margin-bottom: 3rem; }
      body.news.news-single .news-single-wrapper .post-article-single .social-links-header {
        margin-top: 2rem; }
  body.news.news-single .news-single-wrapper .related-post-articles h2 {
    color: #f3f5f5;
    font-size: 32px;
    line-height: 1.2em;
    margin-bottom: 1.5rem; }
  body.news.news-single .news-single-wrapper .related-post-articles .post-article:not(:last-child) {
    margin-bottom: 1.5rem; }

body.news.has-banner .cate-banner {
  height: 200px;
  position: relative;
  margin-top: -55px; }
  body.news.has-banner .cate-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative; }
  body.news.has-banner .cate-banner .banner-overlay {
    opacity: 0.6;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
  body.news.has-banner .cate-banner .cate-title {
    z-index: 3;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 32px; }

@media screen and (min-width: 768px) {
  body.news .post-article .article-picture {
    height: 200px; }
  body.news .post-article .article-info {
    height: calc(100% - 200px); }
    body.news .post-article .article-info .info-preview h3 {
      font-size: 16px; }
    body.news .post-article .article-info .buttons {
      margin-top: 1rem; }
  body.news .latest-post .list-articles {
    gap: 20px; }
  body.news.news-single .news-single-back-button {
    margin: 3rem 0 1.5rem 0; }
  body.news.news-single .news-single-wrapper {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem; }
    body.news.news-single .news-single-wrapper .post-article-single {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(72% + 1.5rem);
      flex: 0 0 calc(72% + 1.5rem);
      padding: 0 0.75rem 0 0;
      margin: 0 0.75rem 0 0;
      border-bottom: none;
      border-right: 1px solid #56565640; }
      body.news.news-single .news-single-wrapper .post-article-single .post-article__title {
        font-size: 32px;
        margin: 1.5rem 0; }
      body.news.news-single .news-single-wrapper .post-article-single .post-article__content {
        font-size: 14px; }
    body.news.news-single .news-single-wrapper .related-post-articles h2 {
      font-size: 20px;
      margin-bottom: 1rem; }
    body.news.news-single .news-single-wrapper .related-post-articles .post-article .article-picture {
      height: 100px; }
    body.news.news-single .news-single-wrapper .related-post-articles .post-article .article-info .info-preview h3 {
      font-size: 1.4rem;
      margin: 1rem 0; }
    body.news.news-single .news-single-wrapper .related-post-articles .post-article .article-info .info-preview .info-desc {
      font-size: 1rem;
      color: gray; }
    body.news.news-single .news-single-wrapper .related-post-articles .post-article .buttons {
      margin-top: 0.5rem; }
      body.news.news-single .news-single-wrapper .related-post-articles .post-article .buttons a {
        font-size: 14px; } }

@media (min-width: 992px) {
  body.news.has-banner .cate-banner {
    height: 500px;
    margin-top: -162px; }
    body.news.has-banner .cate-banner .cate-title {
      font-size: 40px; } }

@media screen and (min-width: 1024px) {
  body.news.news-single .news-single-wrapper .post-article-single {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(72% + 3rem);
    flex: 0 0 calc(72% + 3rem);
    padding: 0 1.5rem 0 0;
    margin: 0 1.5rem 0 0; }
    body.news.news-single .news-single-wrapper .post-article-single .post-article__title {
      font-size: 40px; }
    body.news.news-single .news-single-wrapper .post-article-single .post-article__content {
      font-size: 16px; }
  body.news.news-single .news-single-wrapper .related-post-articles h2 {
    font-size: 26px;
    margin-bottom: 1.5rem; } }

@media screen and (min-width: 1200px) {
  body.news .post-article .article-picture {
    height: 180px; }
    body.news .post-article .article-picture .public-date {
      padding: 0.5rem;
      font-size: 14px;
      line-height: 1em; }
  body.news .post-article .article-info {
    height: calc(100% - 180px); }
    body.news .post-article .article-info .info-preview {
      font-size: 16px; }
      body.news .post-article .article-info .info-preview h3 {
        font-size: 20px;
        line-height: 1.2em;
        margin: 0.5em 0; }
  body.news .latest-post .title h1,
  body.news .latest-post .title h2,
  body.news .grid-post .title h1,
  body.news .grid-post .title h2 {
    font-size: 40px; }
  body.news .latest-post .list-articles {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; }
    body.news .latest-post .list-articles .post-article--1 {
      grid-column: 2/4;
      grid-row: 1/3; }
      body.news .latest-post .list-articles .post-article--1 .article-picture {
        height: 480px; }
      body.news .latest-post .list-articles .post-article--1 .article-info {
        height: auto; }
        body.news .latest-post .list-articles .post-article--1 .article-info .info-preview h3 {
          font-size: 32px; }
        body.news .latest-post .list-articles .post-article--1 .article-info .info-preview .info-desc {
          -webkit-line-clamp: 5;
          line-clamp: 5; }
    body.news .latest-post .list-articles .post-article--3 {
      grid-column: 1/2;
      grid-row: 2; }
    body.news .latest-post .list-articles .post-article--5 {
      grid-column: 4;
      grid-row: 2; }
  body.news .grid-post .grid-articles {
    grid-template-columns: 1fr;
    gap: 40px; }
    body.news .grid-post .grid-articles .post-article {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      body.news .grid-post .grid-articles .post-article .article-picture {
        width: 350px;
        min-height: 200px;
        height: 100%; }
      body.news .grid-post .grid-articles .post-article .article-info {
        padding-left: 30px;
        height: auto;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        justify-content: unset; }
        body.news .grid-post .grid-articles .post-article .article-info h3,
        body.news .grid-post .grid-articles .post-article .article-info .info-desc {
          height: auto;
          overflow: unset;
          display: block;
          -webkit-line-clamp: unset;
          line-clamp: unset;
          -webkit-box-orient: inherit; }
        body.news .grid-post .grid-articles .post-article .article-info .buttons {
          text-align: left; }
  body.news.news-single .news-single-wrapper .post-article-single {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(72% + 6rem);
    flex: 0 0 calc(72% + 6rem);
    padding: 0 3rem 0 0;
    margin: 0 3rem 0 0; }
    body.news.news-single .news-single-wrapper .post-article-single .post-article__title {
      font-size: 64px;
      margin: 1.5rem 0; }
    body.news.news-single .news-single-wrapper .post-article-single .post-article__content {
      font-size: 16px; }
  body.news.news-single .news-single-wrapper .related-post-articles h2 {
    font-size: 26px;
    margin-bottom: 1.5rem; }
  body.news.has-banner .cate-banner {
    margin-top: -140px; } }

@media (min-width: 1600px) {
  body.news.has-banner .cate-banner {
    margin-top: -160px; } }

/*# sourceMappingURL=news.css.map */