.news-list__container{
    margin-top: 40px;
}

.news__row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 40px;
}
.news__row.show{
    opacity: 1;
    animation: fadeIn 1.2s ease-in;
}
/* .news__row.hide {
    display: none;
    animation: fadeOut 0.8s ease forwards;
} */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}
.audio-player{
    margin-top: 20px;
}

.full-line_card{
    grid-column: 1 / -1;
}

.news-list__item{
    border-radius: 3px;
    background: var(--white);
    padding: 24px;
    display: grid;
    gap: 18px;
}
.news-list__text{
    display: grid;
    gap: 18px;
}
.news__row .news-list__item{
    grid-template-rows: 280px 1fr;
    height: 100%;
}
.full-line_card .news-list__item{
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-right: 80px;
    grid-template-rows: 1fr;
}
.news-list__text-sub{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-list__text-main h2{
    margin: 18px 0;
}
.news__row .news-list__image{
    overflow: hidden;
    /* mega custom cdd */
    display: flex;
}
.news-list__image img{
   object-fit: cover;
   object-position: center;
    width: 100%;
}
.news__title {
    background-color: transparent;
}
.project-photo__capture {
    font-size: 16px;
    font-weight: 600;
}
.news-list__text-main .label__gray{
    margin-bottom: 16px;
}
.news-article{
    margin-bottom: 40px;
}
.news-list__data{
    font-size: 16px;
}
.audio-player-container p{
    margin: 0;
}
.plyr--audio .plyr__controls {
    margin-top: 24px;
    background: #fff;
    color: #595959;
    padding: 15px;
    border-radius: 200px;
}
.plyr--full-ui input[type=range]{
    color: #595959;
}
.plyr__controls__item.plyr__menu{
    display: none
}
.plyr--audio .plyr__control:focus-visible, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
    background: var(--main-blue);
}
.audio-player::-webkit-media-controls-download-button {
    display: none;
}
.audio-player::-webkit-media-controls-enclosure {
    overflow: hidden;
}

.audio-player-container{
    margin-bottom: 24px;
}

@media screen and (max-width: 992px) {
    .news__row{
        grid-template-columns: 1fr;

    }
    .full-line_card .news-list__item {
        grid-template-columns: 1fr;
        padding-right: 24px;
        gap: 18px;
    }
    .news__row .news-list__item {
        grid-template-rows: auto 1fr;
    }
    .news-article{
        margin-bottom: 20px;
    }
    .project-photo__capture, .news-list__data {
        font-size: 14px;
    }
    .news__row .news-list__item{
        grid-template-rows: 180px 1fr;
    }
}
@media screen and (max-width: 576px) {
    .news__row{
        grid-template-columns: 1fr;

    }
    .full-line_card .news-list__item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }
    .news-list__item{
        padding: 12px;
        gap: 12px;
    }
    .news__row{
        margin-top: 20px;
        gap: 20px;
    }
    /* .news__row .news-list__item {
        grid-template-rows: 180px 1fr;
    } */
    .news-article{
        margin-bottom: 16px;
    }
    .project-photo__capture, .news-list__data {
        font-size: 12px;
    }
    .news-list__container {
        margin-top: 24px;
    }
}

.preloader-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 32px;
    border-radius: 40px;
    background: var(--main-blue, #589BC6);
    border: none;
    margin-top: 50px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--white);
    margin: 0 5px;
}
.preloader-btn:hover{
    background: var(--main-yellow);
}

  @keyframes bounce1 {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.8);
    }
  }

  /* Анімація для другої точки */
  @keyframes bounce2 {
    0%, 100% {
      transform: scale(1);
    }
    25% {
      transform: scale(1.8);
    }
  }

  /* Анімація для третьої точки */
  @keyframes bounce3 {
    0%, 100% {
      transform: scale(1);
    }
    75% {
      transform: scale(1.8);
    }
  }

.dot:nth-child(1) {
    animation: bounce1 1.5s infinite;
}
.dot:nth-child(2) {
    animation: bounce2 1.5s infinite;
}
.dot:nth-child(3) {
    animation: bounce3 1.5s infinite;
}

@media screen and (max-width: 576px){
    .project_name.news__title{
        margin-bottom: 0;
    }

}
