/* Single Article Header (Static System 1:1) */
.duk-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.news-article-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: var(--black-turquoise, #041D23);
  margin: 0;
  max-width: 900px;
}

.duk-utils {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-share-action,
.btn-print-action,
.duk-utils a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-turquoise, #041D23);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.btn-share-action:hover,
.btn-print-action:hover,
.duk-utils a:hover {
  opacity: 0.75;
}

.action-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.action-divider {
  display: inline-block;
  width: 1px;
  height: 23px;
  background: var(--translucent-gray-purple, #E4E6F0);
  color: transparent;
}

.article-hero-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.article-hero-img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .duk-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .news-article-title {
    font-size: 24px;
    line-height: 30px;
  }
}

