.article-empty {
  margin-top: 28px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(0, 0, 0, .16);
  background: rgba(255, 255, 255, .38);
  text-align: center;
}

.article-empty h3 {
  margin: 0 0 10px;
  font: 600 clamp(25px, 3vw, 38px) var(--display);
  text-transform: uppercase;
}

.article-empty p {
  max-width: 650px;
  margin: 0 auto;
  color: #555;
}

.article-hero-date {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 18px;
  padding: 9px 13px;
  border-left: 3px solid var(--orange);
  background: rgba(0, 0, 0, .48);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}

.article-hero-date span {
  color: #bdbdbd;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-content::after {
  display: block;
  clear: both;
  content: '';
}

.article-content img[data-image-size="small"] { width: 30%; }
.article-content img[data-image-size="medium"] { width: 50%; }
.article-content img[data-image-size="large"] { width: 70%; }
.article-content img[data-image-size="full"] { width: 100%; }

.article-content img[data-image-align="left"] {
  float: left;
  margin: 8px 30px 18px 0;
}

.article-content img[data-image-align="right"] {
  float: right;
  margin: 8px 0 18px 30px;
}

.article-content img[data-image-align="center"] {
  float: none;
  margin: 34px auto;
}

.article-section {
  padding-top: 48px;
}

.article-reading-meta {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 74px;
  margin-bottom: 42px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-top: 3px solid var(--orange);
  background: rgba(255, 255, 255, .48);
  color: #000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
}

.article-reading-meta span,
.article-reading-meta b {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 150px;
  padding: 14px 22px;
  border-right: 1px solid rgba(0, 0, 0, .12);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-reading-meta small {
  margin-bottom: 5px;
  color: #777;
  font-size: 9px;
  letter-spacing: .1em;
}

.article-reading-meta a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 22px;
  color: #333;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.article-reading-meta a:hover {
  color: #000;
}

.article-reading-meta a i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  font-style: normal;
}

.article-gallery-slider {
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, .18);
}

.article-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.article-gallery-heading h2 {
  margin: 6px 0 0;
  font: 700 clamp(30px, 4vw, 44px)/1 var(--display);
  text-transform: uppercase;
}

.article-gallery-count {
  color: #666;
  font: 600 16px var(--display);
}

.article-gallery-count b {
  color: #000;
  font-size: 28px;
}

.article-gallery-stage {
  position: relative;
  height: min(62vw, 540px);
  min-height: 320px;
  overflow: hidden;
  background: #111;
}

.article-gallery-main {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #111;
  cursor: zoom-in;
}

.article-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.article-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0 0 4px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(0, 0, 0, .78);
  color: #fff;
  font: 400 38px/1 Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: .2s;
}

.article-gallery-arrow:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #000;
}

.article-gallery-arrow.prev { left: 18px; }
.article-gallery-arrow.next { right: 18px; }

.article-gallery-thumbs {
  display: flex;
  gap: 9px;
  margin-top: 10px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-color: var(--orange) rgba(0, 0, 0, .12);
  scrollbar-width: thin;
}

.article-gallery-thumbs button {
  flex: 0 0 112px;
  height: 76px;
  padding: 0;
  border: 3px solid transparent;
  background: #111;
  cursor: pointer;
  opacity: .58;
  transition: .2s;
}

.article-gallery-thumbs button.active {
  border-color: var(--orange);
  opacity: 1;
}

.article-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 650px) {
  .article-hero-date { flex-wrap: wrap; }
  .article-content img[data-image-size] { width: 100%; }
  .article-content img[data-image-align] { float: none; margin: 26px auto; }
  .article-section { padding-top: 30px; }
  .article-reading-meta { grid-template-columns: 1fr 1fr; margin-bottom: 30px; }
  .article-reading-meta span,.article-reading-meta b { min-width: 0; padding: 12px 14px; }
  .article-reading-meta b { border-right: 0; }
  .article-reading-meta a { grid-column: 1/-1; justify-content: space-between; padding: 10px 14px; border-top: 1px solid rgba(0,0,0,.12); }
  .article-gallery-stage { min-height: 260px; }
  .article-gallery-arrow { width: 42px; height: 42px; }
  .article-gallery-arrow.prev { left: 10px; }
  .article-gallery-arrow.next { right: 10px; }
  .article-gallery-thumbs button { flex-basis: 88px; height: 62px; }
}
