.information-detail {
    display: flex;
    flex-direction: column;
    background: #ededed;
    padding: 3px 20px;
}

.information-detail_title {
    font: 14px Arial;
    color: #000;
    font-weight: bold;
    margin: 8px 8px 20px 0px;
}

.information-detail_small-title {
    font-size: 12.729px;
    font-weight: bold;
    margin-bottom: 14px;
}

.information-detail_detail {
    font-size: 12.729px;
}

.information-detail_back {
    font-size: 12px;
    text-decoration: none;
}

.information-detail_back:hover {
    text-decoration: underline;
}

/* Интервью */

.interview-detail_title {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 14px;
}

.interview-detail_detail {
    font-size: 12px;
    font-family: arial, helvetica, sans-serif;
}

.interview-detail_back {
    font-size: 12px;
    text-decoration: none;
}

.interview-detail_back:hover {
    text-decoration: underline;
}

.interview-date {
    font-size: 12px;
    margin-bottom: 14px;
}

.interview-date_calendar {
    font-weight: 700;
}

/* Видеогалерея */

.videogallery-section-title {
    margin: 8px 8px 20px 8px;
    font-size: 22px;
    color: #3879b8;
    font-weight: normal;
}

.videogallery-detail__block-title {
    background: #ecf1f7;
    margin: 0 0 10px 0;
    padding: 5px 4px;
}

.videogallery-detail__title {
    margin-bottom: 0;
    font-size: 14px;
    color: #313131;
}

.videogallery-detail__group {
    display: flex;
    flex-direction: column;
    background: #ecf1f7;
    padding: 10px;
    height: fit-content;
    flex: auto;
    font-size: 12px;
}

.videogallery-detail__date {
    color: gray;
}

.videogallery-detail__section {
    display: flex;
    gap: 10px;
    margin-bottom: 13px;
}

.videogallery-detail__video {
    border: 1px solid gray;
    object-fit: cover;
}

.videogallery-detail__back {
    font-size: 12px;
    text-decoration: none;
}

.videogallery-detail__back:hover {
    text-decoration: underline;
}

/* Новости ВНИИЭФ */

.news-date-calendar {
    font-size: 12px;
    line-height: 14px;
    color: #999;
}

.news-detail-title {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 14px;
    font-weight: 600;
    margin-top: 3px;
}

.album-title {
    font-size: 12px;
    color: #3879b8;
    font-weight: bold;
    margin: 1.5em 0 1em 0;
  }
  
  .photo-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .photo-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 945px;
    scroll-behavior: smooth;
    gap: 10px;
    margin-left: 6px;
    margin-right: 6px;
  }
  
  .photo-slide {
    flex: 0 0 auto;
    width: 120px;
    margin: 5px;
    cursor: pointer;
  }
  
  .photo-slide img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding-right: unset;
  }
  
  .slider-arrow {
    font-size: 20px;
    cursor: pointer;
    user-select: none;
    padding: 1px;
    padding-bottom: 45px;
    padding-top: 45px;
    background: #ecf1f7;
}

.slider-arrow.left {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.slider-arrow.right {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
  
  .slider-arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
  }
  
  .modal-inner {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .modal-body {
    position: relative;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  #modalImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    width: 100% !important;
    padding-right: unset;
  }
  
  .modal-close {
    font-size: 28px;
    cursor: pointer;
  }
  
  .modal-arrow {
    position: absolute;
    font-size: 36px;
    color: #333;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
  }
  
  .modal-arrow.left { left: 15px; }
  .modal-arrow.right { right: 15px; }
  
  .modal-footer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 12px;
    font-size: 14px;
    color: #444;
  }

  .modal-info-left {
    text-align: left;
  }
  
  .file-caption {
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .file-name {
    color: #555;
  }
  
  .counter {
    color: #999;
    margin-top: 4px;
  }

  .album-name {
    color: #3879b8;
    font-weight: normal;
    font-size: 16px;
  }
  
  .file-actions a {
    text-decoration: none;
    color: #0056b3;
  }
  
  .file-actions a:hover {
    text-decoration: underline;
  }