/**
 * The base file that should be imported by every file.
 * There should be no CSS generation in this or from imported scss files at all!
 */
/**
 * Library
 */
/**
 * Variables and functions
 */
.section-news {
  position: relative;
  overflow-x: clip;
  overflow-y: visible; }
  @media (min-width: 981px) {
    .section-news {
      min-height: 600px; } }
  .section-news .tns-outer {
    position: relative; }
    .section-news .tns-outer .tns-controls {
      display: flex;
      justify-content: space-between;
      position: absolute;
      top: calc(50% - 30px);
      transform: translateY(-50%);
      width: 100%;
      pointer-events: none;
      z-index: 1; }
      .section-news .tns-outer .tns-controls:focus {
        outline: 0; }
      .section-news .tns-outer .tns-controls:focus-visible, .section-news .tns-outer .tns-controls.focus-visible {
        outline: 2px solid var(--lightblue);
        outline-offset: 3px;
        border-radius: 1px; }
      .section-news .tns-outer .tns-controls button {
        position: relative;
        background: transparent;
        border: none;
        padding: 0; }
  .section-news .arrow {
    background-color: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer; }
    .section-news .arrow[aria-disabled="true"] {
      display: none; }
    .section-news .arrow:hover .arrow-in {
      width: 100%;
      height: 100%;
      border-radius: inherit; }
    .section-news .arrow-left {
      border-radius: 0 15px 15px 0; }
    .section-news .arrow-right {
      border-radius: 15px 0 0 15px; }
    .section-news .arrow-in {
      background-color: var(--night);
      color: var(--white);
      border-radius: 10px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: ease-in-out height 200ms, ease-in-out 200ms width, ease-in-out border-radius 200ms; }
      .section-news .arrow-in span {
        font-size: 8px; }
  .section-news .container .h1 {
    margin: 0; }
  @media (min-width: 981px) {
    .section-news .container .top {
      max-width: 40%; } }
  .section-news .container .top .feature-wrapper {
    max-width: 375px; }
  @media all and (min-width: 1300px) {
    .section-news .news-items-wrapper {
      max-width: 55%;
      position: absolute;
      top: 75px;
      right: 0; } }
  @media all and (max-width: 1299px) {
    .section-news .news-items-wrapper {
      margin-top: 2em;
      position: relative; } }
  .section-news .news-items-wrapper .tns-inner {
    margin-left: 0 !important; }
    @media all and (max-width: 1299px) {
      .section-news .news-items-wrapper .tns-inner {
        padding-left: 2.5%; } }
  .section-news .news-items-wrapper .item-wrapper .item {
    position: relative;
    overflow: hidden; }
    .section-news .news-items-wrapper .item-wrapper .item .image {
      position: relative;
      height: 300px;
      overflow: hidden;
      border-radius: 15px; }
      .section-news .news-items-wrapper .item-wrapper .item .image:before {
        content: '';
        height: 100%;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: radial-gradient(at bottom left, rgba(238, 127, 8, 0.4), rgba(238, 127, 8, 0.1), rgba(0, 0, 0, 0));
        z-index: 1; }
      .section-news .news-items-wrapper .item-wrapper .item .image .image-overlay {
        margin: 0;
        height: 100%;
        width: 100%; }
        .section-news .news-items-wrapper .item-wrapper .item .image .image-overlay img {
          position: absolute;
          inset: 0;
          height: 100%;
          width: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          transition: transform .3s ease-in-out;
          transform: scale(1); }
    .section-news .news-items-wrapper .item-wrapper .item .category {
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 2; }
      .section-news .news-items-wrapper .item-wrapper .item .category ul {
        list-style: none;
        padding: 0;
        margin: 0; }
        .section-news .news-items-wrapper .item-wrapper .item .category ul li {
          padding: 0;
          margin: 0; }
          .section-news .news-items-wrapper .item-wrapper .item .category ul li a {
            background: none;
            color: var(--white); }
    .section-news .news-items-wrapper .item-wrapper .item .content {
      margin-top: 1em;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2em; }
      .section-news .news-items-wrapper .item-wrapper .item .content:after {
        content: '\e904';
        font-family: Icomoon;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--orange);
        color: var(--white);
        font-size: 10px;
        border-radius: 15px;
        transition: background-color .3s ease-in-out; }
      .section-news .news-items-wrapper .item-wrapper .item .content a {
        font-weight: 600;
        flex: 1;
        color: var(--white); }
        .section-news .news-items-wrapper .item-wrapper .item .content a:hover {
          text-decoration: none; }
    .section-news .news-items-wrapper .item-wrapper .item:hover .image img {
      transform: scale(1.1); }
    .section-news .news-items-wrapper .item-wrapper .item:hover .content:after {
      background-color: var(--orange-darken); }
  .section-news .news-items-wrapper .arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%); }
    .section-news .news-items-wrapper .arrows .arrow-right {
      margin-left: auto; }
  .section-news .archive-link {
    display: flex;
    align-items: center;
    gap: 1em;
    color: var(--white);
    margin-top: 2em; }
    @media all and (min-width: 1300px) {
      .section-news .archive-link {
        margin-top: 4em; } }
    .section-news .archive-link:before {
      content: '\e904';
      font-family: Icomoon;
      height: 50px;
      width: 50px;
      border: 1px solid var(--white);
      color: var(--white);
      transition: color .14s ease-in-out, background-color .14s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      font-size: 10px; }
    .section-news .archive-link:hover {
      text-decoration: none; }
      .section-news .archive-link:hover:before {
        background-color: var(--white);
        color: var(--night); }
  .section-news.has-banner {
    padding-top: 100px; }
    @media all and (min-width: 1300px) {
      .section-news.has-banner {
        padding-top: 150px; } }
    @media all and (min-width: 1300px) {
      .section-news.has-banner .news-items-wrapper {
        top: 150px; } }
  .section-news.white .features .feature-post-in .right .title {
    color: var(--night); }
  .section-news.white .news-items-wrapper .item-wrapper .item .image .category a {
    color: var(--white); }
  .section-news.white .news-items-wrapper .item-wrapper .item .content a {
    color: var(--night); }

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