/* Single News meta dates (Event + Published) */

.section-single_blog .post-meta {
  margin-top: 18px;
}

.section-single_blog .post-meta__dates {
  display: flex;
  flex-direction: column; /* one below one */
  align-items: flex-start;
  gap: 10px;

  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;

  max-width: 520px;
}

/* RTL support */
.rtl .section-single_blog .post-meta__dates,
html[dir="rtl"] .section-single_blog .post-meta__dates {
  align-items: flex-start;
  direction: rtl;
  text-align: right;
}

.section-single_blog .post-meta__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  line-height: 1.3;
}

/* subtle icon dot */
.section-single_blog .post-meta__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #9c213f;
  flex: 0 0 8px;
  transform: translateY(-1px);
}

.section-single_blog .post-meta__label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.62);
  white-space: nowrap;
}

/* Arabic: don’t uppercase, keep natural spacing */
.rtl .section-single_blog .post-meta__label,
html[dir="rtl"] .section-single_blog .post-meta__label {
  text-transform: none;
  letter-spacing: normal;
}

.section-single_blog .post-meta__value {
  font-weight: 800;
  font-size: 14px;
  color: #1a1a1a;
}

/* Make it breathe on larger screens */
@media (min-width: 992px) {
  .section-single_blog .post-meta__dates {
    gap: 12px;
  }
  .section-single_blog .post-meta__value {
    font-size: 15px;
  }
}

/* Article font size controls */
.section-single_blog .article-font-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
}

.section-single_blog .article-font-controls__label {
  font-weight: 700;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
  white-space: nowrap;
}

.section-single_blog .article-font-controls__btns {
  display: inline-flex;
  gap: 8px;
}

.section-single_blog .article-font-controls button {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  padding: 9px 10px;
  min-width: 44px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.08s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.section-single_blog .article-font-controls button:hover {
  border-color: rgba(156, 33, 63, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.section-single_blog .article-font-controls button:active {
  transform: translateY(1px);
}

.section-single_blog .article-font-controls button:focus-visible {
  outline: 2px solid rgba(156, 33, 63, 0.55);
  outline-offset: 2px;
}

.section-single_blog .post-content {
  font-size: calc(1em * var(--auib-article-font-scale, 1));
  zoom: var(--auib-article-font-scale, 1);
}

/* Small screens: allow wrapping but keep layout tidy */
@media (max-width: 480px) {
  .section-single_blog .post-meta__item {
    align-items: flex-start;
  }
  .section-single_blog .post-meta__label {
    font-size: 11px;
  }
}

