<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.newsBloc {
    margin: 96px auto;
    padding-top: 71px;
    position: relative;
  }
  
  @media (max-width: 767px) {
    .newsBloc {
      margin: 64px auto;
      padding: 56px 0;
    }
  }
  
  .newsBloc::before {
    content: '';
    background-color: #1E3246;
    position: absolute;
    top: 0;
    left: 0;
    width: 51%;
    height: 361px;
    z-index: -1;
  }
  
  @media (max-width: 767px) {
    .newsBloc::before {
      width: 100%;
      height: 335px;
    }
  }
  
  .newsBloc__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
    font-family: 'Prompt';
  }
  
  @media (max-width: 767px) {
    .newsBloc__title {
      margin-bottom: 48px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
  }
  
  .newsBloc__title h3 {
    font-family: 'Prompt';
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    color: white;
  }
  
  @media (max-width: 1024px) {
    .newsBloc__title h3 {
      font-size: 24px;
      line-height: 120%;
      text-align: center;
    }
  }
  
  @media (min-width: 768px) {
    .newsBloc__title .desktop {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 40px;
    }
    .newsBloc__title .desktop .arrow {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 16px;
    }
  }
  
  .newsBloc__articles ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
  
  @media (max-width: 767px) {
    .newsBloc__articles ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  
  .newsBloc__articles ul .newsBloc-li {
    display: block;
  }

  .newsBloc__articles ul .newsBloc-li p {
    margin-bottom: 0;
  }

  .newsBloc__articles ul li .image {
    position: relative;
    height: 233px;
    margin-bottom: 24px;
  }
  
  .newsBloc__articles ul li .image .label {
    position: absolute;
    bottom: 0;
    font-family: 'Prompt';
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: #FFFFFF;
    border-radius: 0px 16px 0px 0px;
    padding: 8px 16px;
  }
  
  .newsBloc__articles ul li .image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
  
  .newsBloc__articles ul li .title {
    font-family: 'Prompt';
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
  }
  
  .newsBloc__articles ul li .subtitle {
    font-family: 'Prompt';
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #00BCBB;
    margin-bottom: 16px;
  }
  
  .newsBloc__articles ul li .more {
    margin-top: 16px;
    font-family: 'Prompt';
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #00BCBB;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  
  .newsBloc__articles ul li .more:hover {
    color: #1E9F9F;
  }
  
  .newsBloc__articles ul li .more::after {
    content: url("../../images/right-arrow.svg");
    height: 15px;
  }
  
  @media (max-width: 767px) {
    .newsBloc .mobile {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 38px;
    }
    .newsBloc .mobile .arrow {
      position: absolute;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 256px;
    }
  }
  </pre></body></html>