/* Articles shortcodes: header, slider, grid */

.dah-articles-header {
  --dah-deep: #0a4a50;
  --dah-teal: #0e8c92;
  --dah-mint-soft: #d6f5ee;
  --dah-chip: #0a6a5b;
  --dah-ink-2: #3d5453;
  --dah-line: #dce6e4;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--dah-ink-2);
  margin: 0;
}

.dah-articles-header *,
.dah-articles-header *::before,
.dah-articles-header *::after {
  box-sizing: border-box;
}

.dah-articles-header .dah-articles-breadcrumb {
  margin: 0;
}

.dah-articles-header .dah-articles-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--dah-ink-2);
}

.dah-articles-header .dah-articles-breadcrumb a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.dah-articles-header .dah-articles-breadcrumb a:hover {
  color: var(--dah-teal);
}

.dah-articles-header .dah-articles-sep {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  color: var(--dah-ink-2);
  flex-shrink: 0;
}

.dah-articles-header .dah-articles-sep path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dah-articles-header .dah-articles-current {
  color: var(--dah-deep);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.dah-articles-header .dah-articles-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
}

.dah-articles-header .dah-articles-chip {
  display: inline-block;
  align-self: flex-start;
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dah-chip);
  background: var(--dah-mint-soft);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  line-height: 1rem;
  text-decoration: none;
}

.dah-articles-header h1.dah-articles-title {
  margin: 0;
  font-family: Kanit, "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--dah-deep);
  font-size: clamp(1.875rem, 1rem + 2.5vw, 3rem);
  line-height: 1.2 !important;
}

.dah-articles-header .dah-articles-excerpt {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.625;
  color: #0a4a50;
}

.dah-articles-header .dah-articles-date-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--dah-ink-2);
}

.dah-articles-header .dah-articles-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Spline Sans Mono", ui-monospace, monospace;
}

.dah-articles-header .dah-articles-meta-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  color: var(--dah-teal);
}

.dah-articles-header .dah-articles-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--dah-line);
}

.dah-articles-header .dah-articles-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.dah-articles-header .dah-articles-share-label {
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dah-ink-2);
}

.dah-articles-header .dah-articles-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--dah-line);
  background: #fff;
  color: var(--dah-ink-2);
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.dah-articles-header .dah-articles-share-btn:hover {
  border-color: var(--dah-teal);
  color: var(--dah-teal);
}

.dah-articles-header .dah-articles-share-btn svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dah-articles-header .dah-articles-share-btn .dah-articles-linkedin {
  fill: currentColor;
  stroke: none;
}


.dah-articles-slider {
  --dah-deep: #0a4a50;
  --dah-ink: #0c2122;
  --dah-ink-2: #3d5453;
  --dah-line: #dce6e4;
  --dah-accent: #00d1cd;
  --dah-accent-hover: #00e5e0;
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--dah-ink-2);
}

.dah-articles-slider *,
.dah-articles-slider *::before,
.dah-articles-slider *::after {
  box-sizing: border-box;
}

.dah-articles-slider__inner {
  width: 100%;
}

.dah-articles-slider__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dah-articles-slider__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dah-accent);
}

.dah-articles-slider__title {
  margin: 0;
  font-family: Kanit, "Open Sans", sans-serif;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #0f172a;
}

.dah-articles-slider__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.dah-articles-slider__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.dah-articles-slider__nav-btn:hover {
  border-color: var(--dah-accent);
  color: #0f172a;
}

.dah-articles-slider__nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.dah-articles-slider__viewport {
  overflow: hidden;
  margin: 0 -0.75rem;
}

.dah-articles-slider__track {
  display: flex;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

.dah-articles-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 0.75rem;
}

@media (min-width: 768px) {
  .dah-articles-slider__slide {
    flex-basis: 33.333333%;
    width: 33.333333%;
  }
}

.dah-articles-slider__card {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dah-articles-slider__card:hover {
  border-color: rgba(0, 209, 205, 0.3);
}

.dah-articles-slider__card.is-active {
  border-color: var(--dah-accent);
  box-shadow: 0 10px 25px rgba(0, 209, 205, 0.12);
}

.dah-articles-slider__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef2f1;
}

.dah-articles-slider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dah-articles-slider__card:hover .dah-articles-slider__media img {
  transform: scale(1.05);
}

.dah-articles-slider__body {
  padding: 1.5rem;
}

.dah-articles-slider__chip {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 209, 205, 0.4);
  background: #fff;
  color: #1e293b;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dah-articles-slider__card-title {
  margin: 0 0 0.75rem;
  font-family: Kanit, "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.35;
  color: #0f172a;
}

.dah-articles-slider__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #475569;
}

.dah-articles-grid {
  --dah-deep: #0a4a50;
  --dah-teal: #0e8c92;
  --dah-ink-2: #3d5453;
  --dah-line: #dce6e4;
  --dah-chip: #0a6a5b;
  --dah-mint-soft: #d6f5ee;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  font-family: "Open Sans", system-ui, sans-serif;
}

@media (min-width: 640px) {
  .dah-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .dah-articles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dah-articles-grid *,
.dah-articles-grid *::before,
.dah-articles-grid *::after {
  box-sizing: border-box;
}

.dah-articles-grid__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--dah-line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10, 74, 80, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dah-articles-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(10, 74, 80, 0.1);
}

.dah-articles-grid__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef2f1;
}

.dah-articles-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dah-articles-grid__card:hover .dah-articles-grid__media img {
  transform: scale(1.05);
}

.dah-articles-grid__media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 74, 80, 0.5),
    rgba(10, 74, 80, 0.1),
    transparent
  );
  pointer-events: none;
}

.dah-articles-grid__chip {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dah-teal);
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1rem;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.dah-articles-grid__chip:hover {
  background: #fff;
}

.dah-articles-grid__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 1.25rem;
}

.dah-articles-grid__body .dah-articles-grid__meta {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 14px;
  line-height: 1.3;
  color: var(--dah-ink-2);
}

.dah-articles-grid__body .dah-articles-grid__title {
  margin: 0 !important;
  padding: 0 !important;
  font-family: Kanit, "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.35;
  color: var(--dah-deep);
}

.dah-articles-grid__body .dah-articles-grid__title a {
  display: inline;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit;
  text-decoration: none;
}

.dah-articles-grid__title a:hover {
  color: var(--dah-teal);
}

.dah-articles-grid__excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--dah-ink-2);
}

.dah-articles-grid__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 0.5rem;
  margin-top: 0;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dah-teal);
  text-decoration: none;
  transition: gap 0.15s ease;
}

.dah-articles-grid__cta:hover {
  gap: 0.75rem;
}

.dah-articles-grid__cta svg {
  width: 1rem;
  height: 1rem;
}

.dah-articles-grid__pagination {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .dah-articles-grid__pagination {
    flex-direction: row;
  }
}

.dah-articles-grid__page-status {
  margin: 0;
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--dah-ink-2);
}

.dah-articles-grid__page-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.dah-articles-grid__page-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 42px;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--dah-line);
  background: #fff;
  color: var(--dah-deep);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.dah-articles-grid__page-btn:hover {
  border-color: var(--dah-teal);
}

.dah-articles-grid__page-btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.dah-articles-grid__page-btn svg {
  width: 1rem;
  height: 1rem;
}

.dah-articles-grid__page-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dah-articles-grid__page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--dah-line);
  background: #fff;
  color: var(--dah-deep);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.dah-articles-grid__page-num:hover {
  border-color: var(--dah-teal);
}

.dah-articles-grid__page-num.is-current {
  border-color: transparent;
  background: var(--dah-teal);
  color: #0a0f16;
}

.dah-articles-grid--two {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .dah-articles-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .dah-articles-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.dah-articles-category {
  --dah-deep: #0a4a50;
  --dah-teal: #0e8c92;
  --dah-ink-2: #3d5453;
  --dah-line: #dce6e4;
  --dah-mint-soft: #d6f5ee;
  --dah-mist: #f3f6f5;
  --dah-chip: #0a6a5b;
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--dah-ink-2);
}

.dah-articles-category *,
.dah-articles-category *::before,
.dah-articles-category *::after {
  box-sizing: border-box;
}

.dah-articles-featured {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 0 3rem;
  overflow: hidden;
  border: 1px solid var(--dah-line);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 8px 28px rgba(10, 74, 80, 0.08);
}

@media (min-width: 768px) {
  .dah-articles-featured {
    grid-template-columns: 1fr 1fr;
  }
}

.dah-articles-featured__media {
  position: relative;
  min-height: 240px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2f1;
}

@media (min-width: 768px) {
  .dah-articles-featured__media {
    aspect-ratio: auto;
    min-height: 360px;
  }
}

.dah-articles-featured__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.dah-articles-featured:hover .dah-articles-featured__media img {
  transform: scale(1.05);
}

.dah-articles-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
}

@media (min-width: 640px) {
  .dah-articles-featured__body {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .dah-articles-featured__body {
    padding: 2.5rem;
  }
}

.dah-articles-featured__chip,
.dah-articles-category__chip {
  display: inline-block;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: var(--dah-mint-soft);
  color: var(--dah-chip);
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.dah-articles-category__chip {
  margin: 0;
}

.dah-articles-featured__chip:hover,
.dah-articles-category__chip:hover {
  background: #c7efe5;
}

.dah-articles-featured__meta {
  margin: 0 0 0.5rem;
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 14px;
  color: var(--dah-ink-2);
}

.dah-articles-featured__title {
  margin: 0 0 0.75rem;
  padding: 0;
  font-family: Kanit, "Open Sans", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--dah-deep);
}

.dah-articles-featured__excerpt {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.625;
  color: var(--dah-ink-2);
}

.dah-articles-featured__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 0.75rem;
  background: #00d1cd !important;
  color: #0a0f16 !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  box-shadow: 0 10px 15px -3px rgb(0 209 205 / 0.25);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, gap 0.15s ease;
}

.dah-articles-featured__cta:hover,
.dah-articles-featured__cta:focus {
  background: #5af5f1 !important;
  color: #0a0f16 !important;
  box-shadow: 0 10px 15px -3px rgb(0 209 205 / 0.5);
  gap: 0.75rem;
}

.dah-articles-featured__cta svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
}

.dah-articles-category__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .dah-articles-category__layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.dah-articles-category__aside {
  position: relative;
}

@media (min-width: 1024px) {
  .dah-articles-category__aside {
    position: sticky;
    top: 7rem;
  }
}

.dah-articles-category__nav {
  border: 1px solid var(--dah-line);
  border-radius: 1rem;
  background: #fff;
  padding: 0.75rem;
  box-shadow: 0 2px 8px rgba(10, 74, 80, 0.06);
}

.dah-articles-category__nav-label {
  margin: 0;
  padding: 0.375rem 0.75rem 0.5rem;
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dah-teal);
}

.dah-articles-category__nav-label::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 0.625rem;
  vertical-align: middle;
  background: #9fe3d4;
}

.dah-articles-category__select-wrap {
  position: relative;
  display: block !important;
}

@media (min-width: 1024px) {
  .dah-articles-category__select-wrap {
    display: none !important;
  }
}

.dah-articles-category__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dah-articles-category__select {
  width: 100%;
  appearance: none;
  border: 1px solid var(--dah-line);
  border-radius: 0.75rem;
  background: var(--dah-mist);
  color: var(--dah-deep);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 2.5rem 0.85rem 0.85rem;
  outline: none;
}

.dah-articles-category__select:focus {
  border-color: var(--dah-teal);
}

.dah-articles-category__select-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--dah-ink-2);
}

.dah-articles-category__list {
  display: none !important;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .dah-articles-category__list {
    display: flex !important;
  }
}

.dah-articles-category__item {
  margin: 0;
  padding: 0;
}

.dah-articles-category__link {
  display: block;
  border-radius: 0.75rem;
  padding: 0.625rem 0.75rem;
  color: var(--dah-ink-2);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dah-articles-category__link:hover {
  background: var(--dah-mist);
  color: var(--dah-deep);
}

.dah-articles-category__link.is-active {
  background: var(--dah-mint-soft);
  color: var(--dah-deep);
}

.dah-articles-category__empty {
  border: 1px solid var(--dah-line);
  border-radius: 1rem;
  background: #fff;
  padding: 2rem;
}

.dah-articles-category__empty-text {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--dah-ink-2);
}

.dah-articles-category__empty-text strong {
  color: var(--dah-deep);
  font-weight: 600;
}

.dah-articles-category__empty-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

/* Article data tables: keep real table layout (2026 a11y practice) */
.dah-table-wrap {
  margin: 1.5rem 0 2rem;
  border: 1px solid #dce6e4;
  border-radius: 12px;
  background: #fff;
}

.dah-table-wrap:focus-visible {
  outline: 2px solid #0e8c92;
  outline-offset: 2px;
}

#article-content table,
.et_pb_post_content table,
.dah-table {
  display: table !important;
  width: 100% !important;
  max-width: none !important;
  margin: 1.5rem 0 2rem !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  border: 1px solid #dce6e4 !important;
  border-radius: 0 !important;
  background: #fff !important;
  table-layout: auto !important;
  box-shadow: none !important;
}

.dah-table-wrap table,
.dah-table-wrap .dah-table {
  margin: 0 !important;
  border: none !important;
}

#article-content table caption,
.et_pb_post_content table caption,
.dah-table caption,
.dah-table-wrap table caption {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

#article-content table thead,
.et_pb_post_content table thead,
.dah-table thead {
  display: table-header-group !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  margin: 0 !important;
}

#article-content table tbody,
.et_pb_post_content table tbody,
.dah-table tbody {
  display: table-row-group !important;
  width: auto !important;
}

#article-content table tr,
.et_pb_post_content table tr,
.dah-table tr {
  display: table-row !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

#article-content table th,
#article-content table td,
.et_pb_post_content table th,
.et_pb_post_content table td,
.dah-table th,
.dah-table td {
  display: table-cell !important;
  width: auto !important;
  border: none !important;
  border-bottom: 1px solid #e9f0ee !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
  vertical-align: top !important;
  padding: 0.85rem 1.15rem !important;
  font-family: "Open Sans", system-ui, sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: #3d5453 !important;
}

#article-content table thead th,
.et_pb_post_content table thead th,
.dah-table thead th {
  background: #0a4a50 !important;
  color: #fff !important;
  font-family: Kanit, "Open Sans", sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  line-height: 1.35 !important;
  border-bottom: none !important;
  padding: 0.9rem 1.15rem !important;
}

#article-content table tbody th,
#article-content table tbody td:first-child,
.et_pb_post_content table tbody th,
.et_pb_post_content table tbody td:first-child,
.dah-table tbody th,
.dah-table tbody td:first-child {
  font-weight: 500 !important;
  color: #0c2122 !important;
  background: #fff !important;
}

#article-content table tbody td:last-child,
.et_pb_post_content table tbody td:last-child,
.dah-table tbody td:last-child {
  width: 36% !important;
  color: #0a4a50 !important;
  font-weight: 600 !important;
  background: #fff !important;
}

#article-content table tbody tr:nth-child(even) th,
#article-content table tbody tr:nth-child(even) td,
.et_pb_post_content table tbody tr:nth-child(even) th,
.et_pb_post_content table tbody tr:nth-child(even) td,
.dah-table tbody tr:nth-child(even) th,
.dah-table tbody tr:nth-child(even) td {
  background: #f3f6f5 !important;
}

#article-content table tbody tr:hover th,
#article-content table tbody tr:hover td,
.et_pb_post_content table tbody tr:hover th,
.et_pb_post_content table tbody tr:hover td,
.dah-table tbody tr:hover th,
.dah-table tbody tr:hover td {
  background: #d6f5ee !important;
}

#article-content table tbody tr:last-child th,
#article-content table tbody tr:last-child td,
.et_pb_post_content table tbody tr:last-child th,
.et_pb_post_content table tbody tr:last-child td,
.dah-table tbody tr:last-child th,
.dah-table tbody tr:last-child td {
  border-bottom: none !important;
}

#article-content table td::before,
#article-content table th::before,
.et_pb_post_content table td::before,
.et_pb_post_content table th::before,
.dah-table td::before,
.dah-table th::before {
  content: none !important;
}

@media (max-width: 767px) {
  .dah-table-wrap {
    border: none;
    border-radius: 0;
    background: transparent;
  }

  #article-content table,
  .et_pb_post_content table,
  .dah-table,
  .dah-table-wrap table {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 0 1.5rem !important;
    border: none !important;
    background: transparent !important;
  }

  #article-content table thead,
  .et_pb_post_content table thead,
  .dah-table thead {
    display: none !important;
  }

  #article-content table tbody,
  .et_pb_post_content table tbody,
  .dah-table tbody {
    display: block !important;
    width: 100% !important;
  }

  #article-content table tr,
  .et_pb_post_content table tr,
  .dah-table tr {
    display: block !important;
    width: 100% !important;
    margin: 0 0 0.75rem !important;
    padding: 1rem 1.1rem !important;
    border: 1px solid #dce6e4 !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  #article-content table tr:last-child,
  .et_pb_post_content table tr:last-child,
  .dah-table tr:last-child {
    margin-bottom: 0 !important;
  }

  #article-content table th,
  #article-content table td,
  .et_pb_post_content table th,
  .et_pb_post_content table td,
  .dah-table th,
  .dah-table td {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  #article-content table tbody th,
  #article-content table tbody td:first-child,
  .et_pb_post_content table tbody th,
  .et_pb_post_content table tbody td:first-child,
  .dah-table tbody th,
  .dah-table tbody td:first-child {
    font-weight: 500 !important;
    color: #0c2122 !important;
    background: transparent !important;
  }

  #article-content table tbody th + td,
  #article-content table tbody td + td,
  .et_pb_post_content table tbody th + td,
  .et_pb_post_content table tbody td + td,
  .dah-table tbody th + td,
  .dah-table tbody td + td {
    width: 100% !important;
    margin-top: 0.7rem !important;
    padding-top: 0.7rem !important;
    border-top: 1px solid #e9f0ee !important;
    background: transparent !important;
  }

  #article-content table tbody td:last-child,
  .et_pb_post_content table tbody td:last-child,
  .dah-table tbody td:last-child {
    color: #0a4a50 !important;
    font-weight: 600 !important;
  }

  #article-content table tbody tr:nth-child(even) th,
  #article-content table tbody tr:nth-child(even) td,
  #article-content table tbody tr:hover th,
  #article-content table tbody tr:hover td,
  .et_pb_post_content table tbody tr:nth-child(even) th,
  .et_pb_post_content table tbody tr:nth-child(even) td,
  .et_pb_post_content table tbody tr:hover th,
  .et_pb_post_content table tbody tr:hover td,
  .dah-table tbody tr:nth-child(even) th,
  .dah-table tbody tr:nth-child(even) td,
  .dah-table tbody tr:hover th,
  .dah-table tbody tr:hover td {
    background: transparent !important;
  }

  #article-content table tbody th::before,
  #article-content table tbody td::before,
  .et_pb_post_content table tbody th::before,
  .et_pb_post_content table tbody td::before,
  .dah-table tbody th::before,
  .dah-table tbody td::before {
    content: attr(data-label);
    display: block !important;
    margin: 0 0 0.3rem !important;
    font-family: "Spline Sans Mono", ui-monospace, monospace !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #0e8c92 !important;
  }

  #article-content table tbody th:not([data-label])::before,
  #article-content table tbody td:first-child:not([data-label])::before,
  .et_pb_post_content table tbody th:not([data-label])::before,
  .et_pb_post_content table tbody td:first-child:not([data-label])::before,
  .dah-table tbody th:not([data-label])::before,
  .dah-table tbody td:first-child:not([data-label])::before {
    content: "Situatie";
  }

  #article-content table tbody td:last-child:not([data-label])::before,
  .et_pb_post_content table tbody td:last-child:not([data-label])::before,
  .dah-table tbody td:last-child:not([data-label])::before {
    content: "Pseudo-eindheffing vanaf 2027";
  }
}

@media (min-width: 981px) {
  body.dah-article-page {
    background: #f7f9f8;
  }

  body.dah-article-page .et_pb_section {
    background-color: transparent;
  }
}

body.dah-article-page .et_pb_image img,
body.dah-article-page .et_pb_fullwidth_image img,
body.dah-article-page img.wp-post-image {
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-height: 18rem;
  height: auto;
}

body.single-post .et_pb_row_3_tb_body {
  background-color: #ffffff !important;
  border-radius: 1.5rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 8px rgba(10, 74, 80, 0.04);
}
