.news-detail { padding: 24px 0; }
.news-detail__container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.news-detail__title{
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.news-detail__hero{
  margin: 0 0 18px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f3f3;
  max-height: 300px;   
}

.news-detail__hero img{
  width: 100%;
  height: 300px;       
  object-fit: cover;   
  object-position: center;
  display: block;
}


.news-detail__content{
  font-size: 18px;
  line-height: 1.7;
}
.news-detail__content h2{
  font-size: 24px;
  margin: 22px 0 10px;
  line-height: 1.25;
}
.news-detail__content p{
  margin: 0 0 12px;
}


.gallerych{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin: 14px 0 18px;
}
.gallerych__item{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f3f3;
}
.gallerych__item img{
  width: 100%;
  height: auto;
  display:block;
}

@media (max-width: 520px){
  .news-detail__title{ font-size: 26px; }
  .news-detail__content{ font-size: 16px; }
  .gallerych{ grid-template-columns: 1fr; }
}

.bx-info-wrapper {
    max-width: 800px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}


.bx-info-wrapper h1 {
    color: #008b8b;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #008b8b;
    padding-bottom: 10px;
}


.bx-info-table {
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}


.bx-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.bx-row:last-child {
    border-bottom: none;
}


.bx-row:hover {
    background-color: #f5f5f5;
}


.bx-label {
    flex: 0 0 30%;
    padding: 12px 15px;
    background-color: #fafafa;
    font-weight: bold;
    color: #555;
    border-right: 1px solid #eee;
}


.bx-value {
    flex: 1;
    padding: 12px 15px;
    line-height: 1.6;
}

.bx-value a {
    color: #008b8b;
    text-decoration: none;
}


@media (max-width: 600px) {
    .bx-row {
        flex-direction: column;
    }
    .bx-label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        background-color: #f0f4f4;
    }
}