/* ---------- Section wrapper ---------- */
.dhr-pub-section {
  padding: 40px 0;
}

/* ---------- Card container ---------- */
.dhr-pub-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 20px;
  box-shadow: 0 2px 18px rgba(26, 74, 138, 0.07);
}

/* ---------- Header row ---------- */
.dhr-pub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dhr-pub-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dhr-pub-title-bar {
  width: 5px;
  height: 26px;
  background: #1a4a8a;
  border-radius: 3px;
  flex-shrink: 0;
}

.dhr-pub-title {
  font-size: 19px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  color: #1a4a8a;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1;
}

.dhr-pub-more-btn {
  font-size: 15px;
  color: #b45309;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #b45309;
  border-radius: 20px;
  padding: 5px 16px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.dhr-pub-more-btn:hover {
  background: #b45309;
  color: #fff;
  text-decoration: none;
}

/* ---------- Headline card (headline=1, full-width) ---------- */
.dhr-pub-headline {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dde8f5;
  background: #f4f8ff;
  margin-bottom: 22px;
  text-decoration: none;
  transition: box-shadow 0.22s;
}

.dhr-pub-headline:hover {
  box-shadow: 0 6px 24px rgba(26, 74, 138, 0.13);
  text-decoration: none;
}

.dhr-pub-hl-img-wrap {
  width: 340px;
  min-width: 260px;
  flex-shrink: 0;
  overflow: hidden;
}

.dhr-pub-hl-img-wrap img {
  width: 100%;
  height: 300px;
  min-height: 220px;
  display: block;
  transition: transform 0.3s;
}

.dhr-pub-headline:hover .dhr-pub-hl-img-wrap img,
.dhr-pub-hl-fallback:hover .dhr-pub-hl-img-wrap img {
  transform: scale(1.04);
}

.dhr-pub-hl-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.dhr-pub-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  letter-spacing: 0.07em;
  color: #fff;
  background: #f5c800;
  border-radius: 4px;
  padding: 2px 10px;
  width: fit-content;
  text-transform: uppercase;
}

.dhr-pub-hl-title {
  font-size: 17px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  color: #172e5c;
  line-height: 1.55;
  margin: 0;
}

.dhr-pub-hl-excerpt {
  font-size: 15px;
  color: #5a6a82;
  line-height: 1.75;
  margin: 0;
}

.dhr-pub-hl-date {
  font-size: 12px;
  color: #b45309;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.dhr-pub-hl-date svg {
  flex-shrink: 0;
}

/* ---------- Headline fallback (headline=0, 42/58 split) ---------- */
.dhr-pub-hl-fallback {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dde8f5;
  background: #f4f8ff;
  margin-bottom: 22px;
  text-decoration: none;
  transition: box-shadow 0.22s;
}

.dhr-pub-hl-fallback:hover {
  box-shadow: 0 6px 24px rgba(26, 74, 138, 0.13);
  text-decoration: none;
}

.dhr-pub-hl-fallback .dhr-pub-hl-img-wrap {
  width: 42%;
  min-width: 0;
}

/* ---------- Divider ---------- */
.dhr-pub-divider {
  height: 1px;
  background: #e5edf8;
  margin: 0 0 18px;
}

/* ---------- 3-col grid ---------- */
.dhr-pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dhr-pub-item {
  background: #f7fafd;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0eaf5;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.dhr-pub-item:hover {
  box-shadow: 0 4px 18px rgba(26, 74, 138, 0.11);
  transform: translateY(-2px);
  text-decoration: none;
}

.dhr-pub-item-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 75%;
  /* 4:3 ratio */
  overflow: hidden;
  flex-shrink: 0;
}

.dhr-pub-item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #d8e6f5;
  transition: transform 0.3s;
}

.dhr-pub-item:hover .dhr-pub-item-img {
  transform: scale(1.04);
}

.dhr-pub-item-body {
  padding: 10px 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dhr-pub-item-title {
  font-size: 15px;
  font-weight: 600;
  color: #172e5c;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dhr-pub-item-date {
  font-size: 11px;
  color: #b45309;
  font-weight: 600;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) and (min-width: 768px) {
  .dhr-pub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dhr-pub-hl-img-wrap {
    width: 240px;
  }
}

@media (max-width: 767px) {
  .dhr-pub-card {
    padding: 16px 12px 14px;
  }

  .dhr-pub-headline,
  .dhr-pub-hl-fallback {
    flex-direction: column;
  }

  .dhr-pub-hl-img-wrap {
    width: 100% !important;
    min-height: 180px;
  }

  .dhr-pub-hl-body {
    padding: 14px;
  }

  .dhr-pub-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   dhr-list — สำหรับ egp.php และ purchase.php
   เพิ่มต่อท้าย dhr-theme.css
   ============================================================ */

.dhr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.dhr-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #eef2f9;
}

.dhr-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dhr-list-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dhr-list-icon-egp {
  background: #eef3fb;
}

.dhr-list-icon-pdf {
  background: #fff5f0;
}

.dhr-list-body {
  flex: 1;
  min-width: 0;
}

.dhr-list-link {
  font-size: 15px;
  font-weight: 600;
  color: #172e5c;
  line-height: 1.55;
  display: block;
  text-decoration: none;
  transition: color 0.18s;
}

.dhr-list-link:hover {
  color: #1a4a8a;
  text-decoration: underline;
}

.dhr-list-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.dhr-list-date {
  font-size: 11px;
  color: #5a6a82;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dhr-list-date svg {
  flex-shrink: 0;
}

.dhr-list-size {
  font-size: 11px;
  color: #5a6a82;
}

.dhr-list-extra {
  font-size: 11px;
  color: #5a6a82;
  margin-top: 4px;
}

.dhr-list-extra a {
  color: #b45309;
  font-weight: 600;
  text-decoration: none;
}

.dhr-list-extra a:hover {
  text-decoration: underline;
}

/* ---------- Badges (EGP type) ---------- */
.dhr-badge {
  font-size: 10px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.dhr-badge-plan {
  background: #eef3fb;
  color: #1a4a8a;
}

.dhr-badge-price {
  background: #fff5e6;
  color: #b45309;
}

.dhr-badge-bid {
  background: #edf9f2;
  color: #1a6e42;
}

.dhr-badge-win {
  background: #f0fff4;
  color: #166534;
}

.dhr-badge-cancel {
  background: #fef2f2;
  color: #991b1b;
}

.dhr-badge-change {
  background: #fefce8;
  color: #854d0e;
}

/* ============================================================
   dhr-ceo, dhr-ita, dhr-client
   เพิ่มต่อท้าย dhr-theme.css
   ============================================================ */

/* ---------- CEO ---------- */
.dhr-ceo-inner {
  display: flex;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #dde8f5;
  background: linear-gradient(135deg, #f4f8ff 0%, #fefcf7 100%);
}
.dhr-ceo-img {
  width: 280px;
  min-width: 220px;
  flex-shrink: 0;
  padding-top: 15px;
  background: linear-gradient(170deg, #ffff 0%, #f4f8ff 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.dhr-ceo-photo {
  width: 100%;
  max-width: 260px;
  display: block;
  object-fit: contain;
  object-position: bottom;
}
.dhr-ceo-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.dhr-ceo-quote {
  font-size: 15px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  color: #1a3060;
  line-height: 1.65;
  font-style: italic;
  border-left: 4px solid #1a4a8a;
  border-radius: 0;
  padding-left: 14px;
  margin: 0;
}
.dhr-ceo-text {
  font-size: 15px;
  color: #5a6a82;
  line-height: 1.75;
  margin: 0;
}
.dhr-ceo-signature {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
  border-top: 1px solid #dde8f5;
}
.dhr-ceo-name {
  font-size: 14px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  color: #172e5c;
}
.dhr-ceo-role {
  font-size: 12px;
  color: #b45309;
  font-weight: 600;
}

/* ---------- ITA ---------- */
.dhr-ita-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dhr-ita-img {
  width: 180px;
  min-width: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dhr-ita-img img {
  width: 100%;
  display: block;
}
.dhr-ita-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dhr-ita-title {
  font-size: 16px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  color: #172e5c;
  margin: 0;
}
.dhr-ita-abbr {
  font-size: 15px;
  color: #5a6a82;
  line-height: 1.7;
  margin: 0;
}
.dhr-ita-abbr strong {
  color: #1a4a8a;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
}
.dhr-ita-desc {
  font-size: 15px;
  color: #5a6a82;
  line-height: 1.75;
  margin: 0;
}
.dhr-ita-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.dhr-ita-pill {
  font-size: 11px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  letter-spacing: 0.06em;
  padding: 3px 12px;
  border-radius: 20px;
  background: #eef3fb;
  color: #1a4a8a;
  border: 1px solid #c5d8f0;
}

/* ---------- Client ---------- */
.dhr-client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dhr-client-item {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.dhr-client-item:hover {
  box-shadow: 0 4px 16px rgba(26, 74, 138, 0.11);
  transform: translateY(-2px);
  text-decoration: none;
}
.dhr-client-logo {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e0eaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.dhr-client-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.dhr-client-name {
  font-size: 12px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  color: #172e5c;
  line-height: 1.45;
}
.dhr-client-desc {
  font-size: 11px;
  color: #5a6a82;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) and (min-width: 768px) {
  .dhr-client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dhr-ceo-img {
    width: 180px;
    min-width: 150px;
  }
  .dhr-ita-img {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .dhr-ceo-inner {
    flex-direction: column;
  }
  .dhr-ceo-img {
    width: 100%;
    min-width: 0;
    min-height: 200px;
    align-items: center;
  }
  .dhr-ceo-photo {
    max-width: 160px;
  }
  .dhr-ceo-body {
    padding: 16px 14px;
  }
  .dhr-ita-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .dhr-ita-img {
    width: 100%;
    max-width: 200px;
  }
  .dhr-client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Intro shortcut grid ---------- */
.dhr-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.dhr-intro-item {
  border: 1px solid #e0eaf5;
  border-radius: 11px;
  padding: 16px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  text-decoration: none;
  background: #f7fafd;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.dhr-intro-item:hover {
  box-shadow: 0 4px 16px rgba(26, 74, 138, 0.11);
  transform: translateY(-2px);
  text-decoration: none;
}
.dhr-intro-item-warn {
  border-color: #f5d0c8;
  background: #fff9f9;
}
.dhr-intro-label {
  font-size: 15px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  color: #172e5c;
  line-height: 1.4;
}
.dhr-intro-label-warn {
  color: #7c2d12;
}
.dhr-intro-desc {
  font-size: 13px;
  color: #5a6a82;
  line-height: 1.5;
}

/* ---------- Pin post ---------- */
.dhr-pin-wrap {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f5d0c8;
  background: #fff9f9;
  text-decoration: none;
  transition: box-shadow 0.22s;
}
.dhr-pin-wrap:hover {
  box-shadow: 0 6px 24px rgba(180, 83, 9, 0.1);
  text-decoration: none;
}
.dhr-pin-img {
  width: 42%;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 150px;
  background: #f0e0e0;
}
.dhr-pin-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.dhr-pin-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  letter-spacing: 0.05em;
  color: #fff;
  background: #b45309;
  border-radius: 4px;
  padding: 2px 10px;
  width: fit-content;
}
.dhr-pin-title {
  font-size: 17px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  color: #172e5c;
  line-height: 1.55;
  margin: 0;
}
.dhr-pin-excerpt {
  font-size: 15px;
  color: #5a6a82;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Responsive (intro + pin) ---------- */
@media (max-width: 767px) {
  .dhr-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dhr-pin-wrap {
    flex-direction: column;
  }
  .dhr-pin-img {
    width: 100%;
    min-height: 160px;
  }
  .dhr-pin-body {
    padding: 14px;
  }
}

/* ---------- Memorial (special.php) ---------- */
.dhr-memorial {
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.dhr-memorial::before,
.dhr-memorial::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #111, #444, #111);
}

.dhr-memorial-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ปรับ Desktop ให้คงที่และสมดุลกับ Mobile */
  height: 420px;
  overflow: hidden;
}

.dhr-memorial-img {
  width: 100%;
  height: 100%; /* บังคับให้สูงเต็มตัว inner เสมอ */
  display: block;
  object-fit: cover;
  filter: grayscale(30%);
}

.dhr-memorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.dhr-memorial-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dhr-memorial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aaa;
  flex-shrink: 0;
}

.dhr-memorial-label {
  font-size: 12px;
  color: #ccc;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ---------- Memorial — Mobile ---------- */
@media (max-width: 767px) {
  .dhr-memorial {
    border-radius: 8px; /* ปรับมนน้อยลงหน่อยให้รับกับจอเล็ก */
  }

  .dhr-memorial-inner {
    min-height: 135px !important;
    height: 135px !important;
  }

  .dhr-memorial-img {
    height: 135px !important;
    /* width และ object-fit สืบทอดมาจากด้านบนแล้ว */
  }

  .dhr-memorial-ribbon {
    padding: 8px 14px;
  }

  .dhr-memorial-label {
    font-size: 11px;
  }
}
/* ============================================================
   dhr-pagination
   เพิ่มต่อท้าย dhr-theme.css
   ============================================================ */
.dhr-pag-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: #f7fafd;
  border-radius: 12px;
  border: 1px solid #e0eaf5;
  margin-top: 20px;
  flex-wrap: wrap;
}
.dhr-pag-info {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #5a6a82;
}
.dhr-pag-info strong {
  color: #1a4a8a;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
}
.dhr-pag-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.dhr-pag-prev {
  background: #fff;
  color: #1a4a8a;
  border: 1.5px solid #c5d8f0;
}
.dhr-pag-prev:hover {
  background: #1a4a8a;
  color: #fff;
  border-color: #1a4a8a;
  text-decoration: none;
}
.dhr-pag-next {
  background: #1a4a8a;
  color: #fff;
  border: 1.5px solid #1a4a8a;
}
.dhr-pag-next:hover {
  background: #143d75;
  border-color: #143d75;
  text-decoration: none;
}

@media (max-width: 767px) {
  .dhr-pag-wrap {
    padding: 12px 14px;
    justify-content: center; /* ปุ่มอยู่กึ่งกลาง */
  }
  .dhr-pag-info {
    display: none; /* ซ่อน info บน mobile */
  }
  .dhr-pag-btn {
    padding: 8px 20px;
    font-size: 15px;
  }
}

/* ============================================================
   dhr-srl — Search Result List (doc-search.php)
   เพิ่มต่อท้าย dhr-theme.css
   ============================================================ */
.dhr-srl {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.dhr-srl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f4fb;
}
.dhr-srl-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dhr-srl-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff0ec;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.dhr-srl-body {
  flex: 1;
  min-width: 0;
}
.dhr-srl-link {
  font-size: 15px;
  font-weight: 600;
  color: #172e5c;
  text-decoration: none;
  display: block;
  line-height: 1.55;
  transition: color 0.15s;
}
.dhr-srl-link:hover {
  color: #1a4a8a;
  text-decoration: none;
}
.dhr-srl-link mark {
  background: #fff3cd;
  color: #172e5c;
  border-radius: 2px;
  padding: 0 2px;
}
.dhr-srl-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.dhr-srl-tag-group {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: #eef3fb;
  color: #1a4a8a;
}
.dhr-srl-tag-year {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: #fff5e6;
  color: #b45309;
}
.dhr-srl-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.dhr-srl-size {
  font-size: 11px;
  color: #5a6a82;
}
.dhr-srl-extra {
  font-size: 11px;
  color: #b45309;
  font-weight: 600;
}
.dhr-srl-extra a {
  color: #b45309;
  text-decoration: none;
}
.dhr-srl-extra a:hover {
  text-decoration: underline;
}

/* ── Year grouped section ── */
.dhr-srl-yr-section {
  margin-bottom: 16px;
}
.dhr-srl-yr-section:last-child {
  margin-bottom: 0;
}
.dhr-srl-yr-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(90deg, #1a4a8a, #2563b0);
  border-radius: 8px;
  margin-bottom: 6px;
}
.dhr-srl-yr-text {
  font-size: 15px;
  font-weight: 700;
  -webkit-text-stroke: 0.5px currentColor;
  text-stroke: 0.5px currentColor;
  color: #fff;
  letter-spacing: 0.04em;
}
.dhr-srl-yr-count {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-left: auto;
}
