/* =====================================================
   News Page - Creative News 样式
   ===================================================== */

/* Hero Banner */
.hk-news-hero {
  position: relative;
  min-height: 377px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.hk-news-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/news-hero-bg.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  filter: grayscale(100%);
  animation: heroZoom 10s ease-in-out infinite;
}

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

.hk-news-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.9) 100%);
}

.hk-news-hero__dot {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 16px;
  height: 16px;
  background: #ff9101;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(200,255,0,0.6);
  z-index: 10;
}

.hk-news-hero__decor {
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: 180px;
  background: linear-gradient(180deg, rgba(200,255,0,0.5) 0%, transparent 100%);
  z-index: 5;
}

.hk-news-hero__decor-box {
  position: absolute;
  left: 20px;
  bottom: 60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(200,255,0,0.2);
  z-index: 5;
}

.hk-news-hero__title {
  position: relative;
  z-index: 10;
 
  font-size: 57px;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.349);
  letter-spacing: 8px;
  text-transform: capitalize;
  margin-top: 97px;
}

/* Main Content Layout */
.hk-news-main {
  background: #161619;
  padding: 60px 0 100px;
}

.hk-news-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}

/* Article Cards */
.hk-news-articles {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.hk-article-card {
  background: transparent;
}

.hk-article-card__image-wrapper {
  position: relative;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
}

.hk-article-card__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hk-article-card__image {
  display: block;
  position: relative;
}

.hk-article-card__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hk-article-card__image-wrapper:hover .hk-article-card__image img {
  transform: scale(1.1);
}

.hk-article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.hk-article-card__meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hk-article-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hk-article-card__meta-item i {
  color: #ff9100;
}

.hk-article-card__category i {
  color: #0d0d14;
}

.hk-article-card__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff9100;
  color: #ffffff;
  padding: 3px 5px 1px 5px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hk-article-card__title {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hk-article-card__title a {
  color: inherit;
  transition: color 0.3s ease;
}

.hk-article-card__title a:hover {
  color: #ff9101;
}

.hk-article-card__title:hover {
  color: #ff9101;
}

.hk-article-card__desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hk-article-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.hk-article-card__btn:hover {
  background: #ff9101;
  border-color: #cd7502;
  color: #ffffff;
}

/* Article Card Tags */
.hk-article-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.hk-article-card__tag {
    display: inline-block;
    padding: 4px 10px 2px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hk-article-card__tag:hover {
  background: rgba(255, 145, 0, 0.15);
  border-color: rgba(255, 145, 0, 0.4);
  color: #ff9100;
}

.hk-article-card__btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.hk-article-card__btn:hover i {
  transform: translateX(4px);
}

/* Divider */
.hk-article-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 10px 0;
}

/* Sidebar */
.hk-news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hk-sidebar-widget {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px;
}

.hk-sidebar-widget__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #ff9101;
  margin-bottom: 24px;
}

.hk-sidebar-widget__title::before {
  content: '✦';
  color: #c8ff00;
  font-size: 14px;
}

/* Search Widget */
.hk-search-form {
  display: flex;
  gap: 0;
}

.hk-search-form__input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 14px 18px;
  color: #fff;
  font-size: 14px;
}

.hk-search-form__input::placeholder {
  color: rgba(255,255,255,0.3);
}

.hk-search-form__btn {
  width: 54px;
  background: #ff9100;
  border: none;
  border-radius: 0 8px 8px 0;
  color: #0d0d14;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hk-search-form__btn:hover {
  color: #ffffff;
  background: #ff9100;
}

/* Categories Widget - Card Grid */
.hk-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hk-category-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hk-category-card i {
  font-size: 14px;
  color: #ff9100;
  transition: all 0.3s ease;
}

.hk-category-card:hover {
  background: rgba(255, 145, 0, 0.15);
  border-color: rgba(255, 145, 0, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.hk-category-card:hover i {
  color: #fff;
}

/* Recent Posts Widget */
.hk-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hk-recent-post {
  display: flex;
  gap: 16px;
}

.hk-recent-post__image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.hk-recent-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hk-recent-post:hover .hk-recent-post__image img {
  transform: scale(1.1);
}

.hk-recent-post__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hk-recent-post__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;

  color: #949494;

  border-radius: 3px;
  margin-bottom: 6px;
}

.hk-recent-post__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.hk-recent-post:hover .hk-recent-post__title {
  color: #ff9101;
}

.hk-recent-post__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.hk-recent-post__date i {
  font-size: 11px;
}

/* Recent Post Tags */
.hk-recent-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.hk-recent-post__tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 145, 0, 0.12);
  border: 1px solid rgba(255, 145, 0, 0.25);
  border-radius: 3px;
  color: #ff9100;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.hk-recent-post:hover .hk-recent-post__tag {
  background: rgba(200, 255, 0, 0.15);
  border-color: #ce7501;
  color: #ff9101;
}

/* Banner Widget */
.hk-banner-widget {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(180deg, #ff8fab 0%, #ffc2d1 100%);
}

.hk-banner-widget__content {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
}

.hk-banner-widget__text {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hk-banner-widget__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: bottom right;
}

/* Tags Cloud Widget */
.hk-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hk-tag {
  display: inline-block;
  padding: 8px 16px 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hk-tag:hover {
  background: #ff9101;
  border-color: #d87b01;
  color: #ffffff;
}

/* Pagination */
.hk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.hk-pagination__btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hk-pagination__btn:hover,
.hk-pagination__btn--active {
  background: #ff9101;
  border-color: #db7e05;
  color: #0d0d14;
}

.hk-pagination__btn--arrow {
  background: transparent;
}

.hk-pagination__btn--arrow:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .hk-news-layout {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
  
  .hk-news-hero__title {
    font-size: 70px;
  }
  
  .hk-article-card__title {
    font-size: 30px;
  }
  
  .hk-article-card__image img {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .hk-news-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hk-news-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .hk-news-hero__title {
    font-size: 55px;
  }
  
  .hk-news-hero__dot,
  .hk-news-hero__decor,
  .hk-news-hero__decor-box {
    display: none;
  }
}

@media (max-width: 768px) {
  .hk-news-hero {
    min-height: 200px;
  }
  
  .hk-news-hero__title {
    font-size: 36px;
    letter-spacing: 4px;
  }
  
  .hk-news-main {
    padding: 40px 0 60px;
  }
  
  .hk-news-sidebar {
    grid-template-columns: 1fr;
  }
  
  .hk-article-card__title {
    font-size: 24px;
  }
  
  .hk-article-card__image img {
    height: 280px;
  }
  
  .hk-sidebar-widget {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hk-news-hero__title {
    font-size: 28px;
  }
  
  .hk-article-card__title {
    font-size: 22px;
  }
  
  .hk-article-card__image img {
    height: 220px;
  }
  
  .hk-banner-widget {
    height: 220px;
  }
  
  .hk-banner-widget__text {
    font-size: 24px;
  }
}

/* =====================================================
   Blog Details Page - 新闻详情页样式
   ===================================================== */

/* Detail Main */
.hk-detail-main {
  background: #161619;
  padding: 50px 0 100px;
}

/* Featured Image - 文章特色图片 */
.hk-detail-featured-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}

.hk-detail-featured-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hk-detail-featured-image:hover img {
  transform: scale(1.02);
}

.hk-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}

/* Detail Article */
.hk-detail-article {
  display: flex;
  flex-direction: column;
}

/* Meta Info */
.hk-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.hk-detail-meta__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hk-detail-meta__item i {
  color: #ff9100;
}

.hk-detail-meta__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff9100;
  color: #0d0d14;
  padding: 4px 10px 2px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hk-detail-meta__category i {
  color: #0d0d14;
}

/* Title */
.hk-detail-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 32px;
}

/* Blockquote / Summary - 核心摘要样式 */
.hk-detail-quote {
  position: relative;
  background: rgba(255,255,255,0.03);
  border-left: none;
  border-radius: 16px;
  padding: 40px 50px 40px 60px;
  margin: 0 0 40px 0;
}

.hk-detail-quote p {
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin: 0;
  text-transform: capitalize;
}

.hk-detail-quote__mark {
  position: absolute;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(255, 145, 0, 0.15);
  line-height: 1;
  pointer-events: none;
}

.hk-detail-quote__mark--open {
  top: -10px;
  left: 15px;
}

.hk-detail-quote__mark--close {
  bottom: -60px;
  right: 25px;
}

/* Content */
.hk-detail-content {
  margin-bottom: 40px;
}

.hk-detail-content__title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin: 36px 0 18px;
  line-height: 1.3;
}

.hk-detail-content__title:first-child {
  margin-top: 0;
}

.hk-detail-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Image Group */
.hk-detail-image-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.hk-detail-image-group__item {
  border-radius: 12px;
  overflow: hidden;
}

.hk-detail-image-group__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hk-detail-image-group__item:hover img {
  transform: scale(1.05);
}

.hk-detail-image-group__caption {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  margin: 0;
}

/* List */
.hk-detail-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.hk-detail-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.hk-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #ff9100;
  border-radius: 50%;
}

.hk-detail-list li strong {
  color: #fff;
}

/* Tags */
.hk-detail-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hk-detail-tags__label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.hk-detail-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hk-detail-tag {
  display: inline-block;
  padding: 6px 14px 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hk-detail-tag:hover {
  background: #ff9100;
  border-color: #ff9100;
  color: #0d0d14;
}

/* Share */
.hk-detail-share {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.hk-detail-share__label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.hk-detail-share__icons {
  display: flex;
  gap: 10px;
}

.hk-detail-share__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all 0.3s ease;
}

.hk-detail-share__icon:hover {
  background: #ff9100;
  border-color: #ff9100;
  color: #0d0d14;
}

/* Author Box */
.hk-detail-author {
  display: flex;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
}

.hk-detail-author__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.hk-detail-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hk-detail-author__info {
  flex: 1;
}

.hk-detail-author__name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.hk-detail-author__role {
  font-size: 13px;
  color: #ff9100;
  margin-bottom: 12px;
}

.hk-detail-author__bio {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* Navigation */
.hk-detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.hk-detail-nav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hk-detail-nav__item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255, 145, 0, 0.3);
}

.hk-detail-nav__item--next {
  text-align: right;
}

.hk-detail-nav__label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hk-detail-nav__label i {
  font-size: 10px;
}

.hk-detail-nav__title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.hk-detail-nav__item:hover .hk-detail-nav__title {
  color: #ff9100;
}

/* Comments */
.hk-detail-comments {
  margin-top: 50px;
}

.hk-detail-comments__title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hk-detail-comment {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.hk-detail-comment--reply {
  margin-left: 60px;
}

.hk-detail-comment__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.hk-detail-comment__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hk-detail-comment__content {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 20px;
}

.hk-detail-comment__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hk-detail-comment__name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.hk-detail-comment__badge {
  display: inline-block;
  background: #ff9100;
  color: #0d0d14;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  text-transform: uppercase;
}

.hk-detail-comment__date {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.hk-detail-comment__text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0 0 12px;
}

.hk-detail-comment__reply {
  background: transparent;
  border: none;
  color: #ff9100;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
}

.hk-detail-comment__reply:hover {
  opacity: 0.7;
}

/* Comment Form */
.hk-detail-comment-form {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hk-detail-comment-form__title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.hk-detail-comment-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.hk-detail-comment-form__input,
.hk-detail-comment-form__textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 20px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.hk-detail-comment-form__input:focus,
.hk-detail-comment-form__textarea:focus {
  outline: none;
  border-color: rgba(255, 145, 0, 0.5);
}

.hk-detail-comment-form__input::placeholder,
.hk-detail-comment-form__textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.hk-detail-comment-form__textarea {
  min-height: 150px;
  resize: vertical;
  margin-bottom: 20px;
}

.hk-detail-comment-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff9100;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  color: #0d0d14;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hk-detail-comment-form__btn:hover {
  background: #e68200;
  transform: translateY(-2px);
}

/* Detail Page Responsive */
@media (max-width: 1200px) {
  .hk-detail-layout {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
  
  .hk-detail-title {
    font-size: 36px;
  }
  
  .hk-detail-featured-image img {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .hk-detail-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hk-detail-title {
    font-size: 32px;
  }
  
  .hk-detail-quote {
    padding: 30px 40px 30px 50px;
  }
  
  .hk-detail-quote p {
    font-size: 16px;
  }
  
  .hk-detail-quote__mark {
    font-size: 90px;
  }
}

@media (max-width: 768px) {
  .hk-detail-featured-image img {
    height: 300px;
  }
  
  .hk-detail-main {
    padding: 30px 0 60px;
  }
  
  .hk-detail-title {
    font-size: 28px;
  }
  
  .hk-detail-quote {
    padding: 24px 30px 24px 40px;
  }
  
  .hk-detail-quote__mark {
    font-size: 70px;
  }
  
  .hk-detail-quote__mark--open {
    top: -5px;
    left: 10px;
  }
  
  .hk-detail-quote__mark--close {
    bottom: -40px;
    right: 15px;
  }
  
  .hk-detail-image-group {
    grid-template-columns: 1fr;
  }
  
  .hk-detail-author {
    flex-direction: column;
    text-align: center;
  }
  
  .hk-detail-author__avatar {
    margin: 0 auto;
  }
  
  .hk-detail-nav {
    grid-template-columns: 1fr;
  }
  
  .hk-detail-nav__item--next {
    text-align: left;
  }
  
  .hk-detail-comment--reply {
    margin-left: 30px;
  }
  
  .hk-detail-comment-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hk-detail-featured-image img {
    height: 220px;
  }
  
  .hk-detail-featured-image {
    border-radius: 12px;
  }
  
  .hk-detail-title {
    font-size: 24px;
  }
  
  .hk-detail-meta {
    gap: 12px;
  }
  
  .hk-detail-content__title {
    font-size: 22px;
  }
  
  .hk-detail-comment--reply {
    margin-left: 0;
  }
  
  .hk-detail-comment__avatar {
    width: 45px;
    height: 45px;
  }
}

