/* News Detail Page Styles - Fully Responsive */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 60px;
  margin-top: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.breadcrumb a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #313131;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #AF936E;
}

.breadcrumb span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #313131;
}

.breadcrumb .chevron-right {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* News Detail Article */
.news-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px 60px;
}

.news-detail-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  align-items: center;
}

.news-detail-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #191919;
  text-align: center;
  line-height: 1.4;
  margin-top: 32px;
}

.news-detail-date {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #AB7C53;
  letter-spacing: 0.96px;
  text-align: center;
}

.news-detail-content {
  margin-bottom: 50px;
}

.news-detail-text {
  font-family: 'Inter', sans-serif;
  font-size: 13.8px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  line-height: 40px;
  margin-bottom: 40px;
  text-align: justify;
}

.news-detail-image {
  width: 100%;
  max-width: 997px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* News Navigation */
.news-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid #E0E0E0;
  margin-top: 40px;
}

.news-nav-item {
  flex: 1;
  max-width: 200px;
}

.news-nav-prev {
  text-align: left;
}

.news-nav-next {
  text-align: right;
}

.news-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6.7px;
  text-decoration: none;
  color: #1A1A1A;
  transition: color 0.3s;
}

.news-nav-link:hover {
  color: #AB7C53;
}

.news-nav-symbol {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1;
}

.news-nav-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
}

.news-nav-list {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1A1A1A;
  text-decoration: none;
  text-align: center;
  transition: color 0.3s;
  white-space: nowrap;
}

.news-nav-list:hover {
  color: #AB7C53;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .breadcrumb,
  .news-detail {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 992px) {
  .breadcrumb,
  .news-detail {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .news-detail-title {
    font-size: 22px;
  }
  
  .news-detail-text {
    font-size: 13px;
    line-height: 36px;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 12px;
  }
  
  .breadcrumb a,
  .breadcrumb span {
    font-size: 12px;
  }
  
  .breadcrumb .chevron-right {
    width: 14px;
    height: 14px;
  }
  
  .news-detail {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }
  
  .news-detail-header {
    margin-bottom: 30px;
  }
  
  .news-detail-title {
    font-size: 20px;
    margin-top: 20px;
  }
  
  .news-detail-date {
    font-size: 14px;
  }
  
  .news-detail-text {
    font-size: 12.5px;
    line-height: 32px;
    margin-bottom: 30px;
  }
  
  .news-navigation {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
  
  .news-nav-item {
    max-width: 100%;
    width: 100%;
  }
  
  .news-nav-prev,
  .news-nav-next {
    text-align: center;
  }
  
  .news-nav-link {
    justify-content: center;
  }
  
  .news-nav-list {
    order: -1;
    padding: 10px 20px;
    background-color: #F6F6F6;
    border-radius: 5px;
    display: block;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
    gap: 5px;
  }
  
  .breadcrumb a,
  .breadcrumb span {
    font-size: 11px;
  }
  
  .breadcrumb .chevron-right {
    width: 12px;
    height: 12px;
  }
  
  .news-detail {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }
  
  .news-detail-header {
    margin-bottom: 25px;
  }
  
  .news-detail-title {
    font-size: 18px;
    margin-top: 15px;
  }
  
  .news-detail-date {
    font-size: 13px;
  }
  
  .news-detail-text {
    font-size: 12px;
    line-height: 28px;
    margin-bottom: 25px;
  }
  
  .news-detail-image {
    border-radius: 8px;
  }
  
  .news-navigation {
    gap: 12px;
    padding: 15px 0;
    margin-top: 30px;
  }
  
  .news-nav-symbol {
    font-size: 18px;
  }
  
  .news-nav-text {
    font-size: 13px;
  }
  
  .news-nav-list {
    font-size: 13px;
    padding: 8px 15px;
  }
}
