/* ==========================================================================
   Draenor — Modern Theme
   Dark cinematic fantasy redesign. Loaded after main.css/default.css and
   overrides them for the pages that opt into the new markup.
   ========================================================================== */

:root {
  --wod-bg: #0a0908;
  --wod-bg-elevated: #131110;
  --wod-bg-card: rgba(255, 255, 255, .04);
  --wod-border: rgba(255, 255, 255, .09);
  --wod-border-strong: rgba(255, 255, 255, .16);

  --wod-red: #7a1f1f;
  --wod-red-bright: #a8302c;
  --wod-orange: #b5551f;
  --wod-fel: #5fae4b;
  --wod-fel-bright: #7fd45f;
  --wod-gold: #c8a24a;
  --wod-gold-bright: #e0c47a;

  --wod-text: #ece7de;
  --wod-text-muted: #a39c92;
  --wod-text-faint: #6f685f;

  --wod-font-display: 'Cinzel', 'Times New Roman', serif;
  --wod-font-body: 'Inter', 'Open Sans', Helvetica, Arial, sans-serif;

  --wod-radius: 14px;
  --wod-radius-sm: 8px;
  --wod-container: 1240px;
}

.wod-page {
  background: var(--wod-bg);
  color: var(--wod-text);
  font-family: var(--wod-font-body);
  overflow-x: hidden;
}

.wod-page * {
  box-sizing: border-box;
}

.wod-container {
  max-width: var(--wod-container);
  margin: 0 auto;
  padding: 0 24px;
}

.wod-label {
  font-family: var(--wod-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wod-gold);
}

.wod-heading {
  font-family: var(--wod-font-display);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
  color: var(--wod-text);
  margin: 10px 0 0;
}

.wod-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--wod-text-muted);
  max-width: 640px;
}

.wod-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--wod-red-bright) 35%, var(--wod-gold) 50%, var(--wod-red-bright) 65%, transparent);
  opacity: .5;
}

/* -------------------------------------------------------------------- */
/* Buttons                                                               */
/* -------------------------------------------------------------------- */

.wod-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wod-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--wod-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.wod-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.wod-btn-primary {
  background: linear-gradient(135deg, var(--wod-red-bright), var(--wod-orange));
  color: #fff2e4;
  box-shadow: 0 8px 24px rgba(168, 48, 44, .28);
}

.wod-btn-primary:hover {
  color: #fff2e4;
  box-shadow: 0 10px 30px rgba(168, 48, 44, .4);
}

.wod-btn-ghost {
  background: rgba(255, 255, 255, .04);
  border-color: var(--wod-border-strong);
  color: var(--wod-text);
  backdrop-filter: blur(6px);
}

.wod-btn-ghost:hover {
  color: var(--wod-text);
  border-color: var(--wod-gold);
  background: rgba(255, 255, 255, .07);
}

/* -------------------------------------------------------------------- */
/* Header                                                                */
/* -------------------------------------------------------------------- */

.wod-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(6, 5, 5, .55), rgba(6, 5, 5, 0));
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, padding .35s ease, backdrop-filter .35s ease;
}

.wod-header.is-scrolled {
  padding: 12px 0;
  background: rgba(9, 8, 7, .86);
  border-bottom: 1px solid var(--wod-border);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.wod-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wod-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wod-font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--wod-text);
  text-decoration: none;
}

.wod-logo:hover {
  color: var(--wod-text);
  text-decoration: none;
}

.wod-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.wod-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wod-nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wod-text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .2s ease;
}

.wod-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--wod-gold);
  transition: right .25s ease;
}

.wod-nav a:hover {
  color: var(--wod-text);
  text-decoration: none;
}

.wod-nav a:hover::after {
  right: 0;
}

.wod-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wod-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--wod-border-strong);
  color: var(--wod-text-muted);
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
  text-decoration: none;
}

.wod-icon-link:hover {
  color: var(--wod-text);
  border-color: var(--wod-gold);
  background: rgba(255, 255, 255, .05);
  text-decoration: none;
}

.wod-header-toggle {
  display: none;
  background: none;
  border: 1px solid var(--wod-border-strong);
  color: var(--wod-text);
  width: 38px;
  height: 38px;
  border-radius: var(--wod-radius-sm);
  align-items: center;
  justify-content: center;
}

.wod-user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  border: 1px solid var(--wod-border-strong);
  color: var(--wod-text);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
}

.wod-user-chip:hover {
  color: var(--wod-text);
  text-decoration: none;
  border-color: var(--wod-gold);
}

.wod-user-chip img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

/* -------------------------------------------------------------------- */
/* Hero                                                                  */
/* -------------------------------------------------------------------- */

.wod-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 30%;
  isolation: isolate;
}

.wod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,5,5,.55) 0%, rgba(6,5,5,.35) 30%, rgba(7,6,5,.75) 78%, #0a0908 100%),
    linear-gradient(90deg, rgba(6,5,5,.75) 0%, rgba(6,5,5,.15) 45%, rgba(6,5,5,.05) 70%);
  z-index: 1;
}

.wod-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  max-width: 640px;
}

.wod-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(200, 162, 74, .4);
  background: rgba(200, 162, 74, .08);
  color: var(--wod-gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.wod-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wod-fel-bright);
  box-shadow: 0 0 8px var(--wod-fel-bright);
}

.wod-hero h1 {
  font-family: var(--wod-font-display);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
}

.wod-hero h1 span {
  color: var(--wod-gold-bright);
}

.wod-hero-logo {
  display: block;
  width: clamp(180px, 22vw, 260px);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .55));
}

.wod-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--wod-text-muted);
  margin: 0 0 34px;
  max-width: 480px;
}

.wod-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wod-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--wod-text-faint);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.wod-scroll-indicator .chevron {
  width: 14px;
  height: 14px;
  border-right: 1px solid var(--wod-text-faint);
  border-bottom: 1px solid var(--wod-text-faint);
  transform: rotate(45deg);
  animation: wod-bounce 2.2s ease-in-out infinite;
}

@keyframes wod-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .5; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* -------------------------------------------------------------------- */
/* Section shell                                                        */
/* -------------------------------------------------------------------- */

.wod-section {
  padding: 110px 0;
  position: relative;
}

.wod-section-tight {
  padding: 90px 0;
}

.wod-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.wod-section-head .wod-heading {
  font-size: clamp(28px, 3.2vw, 40px);
}

/* -------------------------------------------------------------------- */
/* News                                                                  */
/* -------------------------------------------------------------------- */

.wod-news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.wod-news-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wod-card {
  position: relative;
  display: block;
  border-radius: var(--wod-radius);
  overflow: hidden;
  background: var(--wod-bg-card);
  border: 1px solid var(--wod-border);
  text-decoration: none;
  color: var(--wod-text);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.wod-card:hover {
  color: var(--wod-text);
  text-decoration: none;
  transform: translateY(-4px);
  border-color: var(--wod-border-strong);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.wod-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--wod-bg-elevated);
}

.wod-news-featured .wod-card-media {
  aspect-ratio: 16 / 10;
}

.wod-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.wod-card:hover .wod-card-media img {
  transform: scale(1.06);
}

.wod-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,.9), rgba(8,7,6,0) 55%);
}

.wod-card-meta {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.wod-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(10, 9, 8, .7);
  border: 1px solid var(--wod-border-strong);
  color: var(--wod-gold-bright);
  backdrop-filter: blur(4px);
}

.wod-card-body {
  padding: 22px 24px 26px;
}

.wod-news-featured .wod-card-body {
  padding: 26px 28px 30px;
}

.wod-card-date {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wod-text-faint);
  margin-bottom: 10px;
  display: block;
}

.wod-card-title {
  font-family: var(--wod-font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #fff;
}

.wod-news-featured .wod-card-title {
  font-size: 28px;
}

.wod-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--wod-text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wod-card-small {
  display: flex;
  gap: 16px;
  padding: 16px;
  align-items: center;
}

.wod-card-small .wod-card-media {
  aspect-ratio: 1 / 1;
  width: 96px;
  flex: 0 0 96px;
  border-radius: var(--wod-radius-sm);
}

.wod-card-small .wod-card-body {
  padding: 0;
}

.wod-card-small .wod-card-title {
  font-size: 15px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -------------------------------------------------------------------- */
/* Features                                                              */
/* -------------------------------------------------------------------- */

.wod-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.wod-feature-card {
  position: relative;
  border-radius: var(--wod-radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--wod-border);
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  transition: transform .35s ease, border-color .3s ease;
}

.wod-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--wod-gold);
  text-decoration: none;
}

.wod-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: saturate(.85) brightness(.75);
}

.wod-feature-card:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(.65);
}

.wod-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,5,5,.95) 0%, rgba(6,5,5,.55) 45%, rgba(6,5,5,.1) 75%);
}

.wod-feature-body {
  position: relative;
  z-index: 2;
  padding: 26px 22px;
  width: 100%;
}

.wod-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 162, 74, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wod-gold-bright);
  margin-bottom: 14px;
  font-size: 15px;
  background: rgba(10,9,8,.5);
}

.wod-feature-body h3 {
  font-family: var(--wod-font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.wod-feature-body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--wod-text-muted);
  margin: 0;
}

/* -------------------------------------------------------------------- */
/* Coming soon banner                                                    */
/* -------------------------------------------------------------------- */

.wod-cta-banner {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center 42%;
  border-radius: var(--wod-radius);
  overflow: hidden;
  isolation: isolate;
}

.wod-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8,7,6,.35) 0%, rgba(8,7,6,.82) 78%),
    linear-gradient(180deg, rgba(8,7,6,.65), rgba(8,7,6,.45) 40%, rgba(8,7,6,.85));
  z-index: 1;
}

.wod-cta-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 24px;
}

.wod-cta-content .wod-badge {
  margin-bottom: 24px;
}

.wod-cta-content h2 {
  font-family: var(--wod-font-display);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}

.wod-cta-content h2 span {
  color: var(--wod-fel-bright);
  text-shadow: 0 0 24px rgba(127, 212, 95, .35);
}

.wod-cta-content p {
  font-size: 16px;
  color: var(--wod-text-muted);
  margin: 0 0 32px;
}

/* -------------------------------------------------------------------- */
/* Community                                                             */
/* -------------------------------------------------------------------- */

.wod-community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.wod-community-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 26px;
  border-radius: var(--wod-radius);
  border: 1px solid var(--wod-border);
  background: var(--wod-bg-card);
  text-decoration: none;
  color: var(--wod-text);
  transition: border-color .25s ease, transform .25s ease, background-color .25s ease;
}

.wod-community-card:hover {
  color: var(--wod-text);
  text-decoration: none;
  border-color: var(--wod-gold);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .06);
}

.wod-community-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(200, 162, 74, .08);
  border: 1px solid rgba(200, 162, 74, .35);
  color: var(--wod-gold-bright);
}

.wod-community-card h4 {
  font-family: var(--wod-font-display);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}

.wod-community-card p {
  font-size: 13px;
  color: var(--wod-text-muted);
  margin: 0;
}

/* -------------------------------------------------------------------- */
/* Footer                                                                */
/* -------------------------------------------------------------------- */

.wod-footer {
  background: var(--wod-bg-elevated);
  border-top: 1px solid var(--wod-border);
  padding-top: 56px;
}

.wod-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.wod-footer-brand .wod-logo {
  margin-bottom: 14px;
}

.wod-footer-brand p {
  font-size: 13px;
  color: var(--wod-text-muted);
  max-width: 320px;
  line-height: 1.7;
  margin: 0;
}

.wod-footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.wod-footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wod-gold);
  margin: 0 0 16px;
}

.wod-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wod-footer-col a {
  font-size: 13.5px;
  color: var(--wod-text-muted);
  text-decoration: none;
  transition: color .2s ease;
}

.wod-footer-col a:hover {
  color: var(--wod-text);
  text-decoration: none;
}

.wod-footer-bottom {
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wod-footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: var(--wod-text-faint);
}

.wod-footer-social {
  display: flex;
  gap: 10px;
}

.wod-legal {
  padding: 18px 0 30px;
  border-top: 1px solid var(--wod-border);
  margin-top: 6px;
}

.wod-legal p {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  color: var(--wod-text-faint);
  max-width: 900px;
}

/* -------------------------------------------------------------------- */
/* Responsive                                                            */
/* -------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .wod-features-grid { grid-template-columns: repeat(2, 1fr); }
  .wod-community-grid { grid-template-columns: 1fr; }
  .wod-news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .wod-nav { display: none; }
  .wod-header-toggle { display: inline-flex; }
  .wod-header-auth-btn { display: none; }
  .wod-header-right { gap: 10px; }
}

@media (max-width: 640px) {
  .wod-section { padding: 72px 0; }
  .wod-features-grid { grid-template-columns: 1fr; }
  .wod-hero { min-height: 86vh; }
  .wod-hero-content { padding-top: 70px; }
  .wod-footer-top { flex-direction: column; }
  .wod-cta-banner { min-height: 54vh; }
  .wod-card-small { flex-direction: row; }
  .wod-user-chip-name { display: none; }
  .wod-user-chip { padding: 6px; }
  .wod-container { padding: 0 16px; }
}

.wod-header-inner,
.wod-header-right,
.wod-news-grid,
.wod-features-grid,
.wod-community-grid,
.wod-shop-grid,
.wod-news-page-grid {
  min-width: 0;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ==========================================================================
   News landing page + article page
   ========================================================================== */

.wod-news-page {
  position: relative;
  padding-top: 150px;
  background:
    linear-gradient(180deg, rgba(10,9,8,.94) 0%, rgba(10,9,8,.98) 60%, #0a0908 100%),
    url('../images/slides/wod-dark-portal.png');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
}

.wod-news-header {
  margin-bottom: 44px;
}

.wod-news-header .wod-heading {
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 8px;
}

.wod-news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* Featured (news landing) — big cinematic card */
.wod-featured-xl {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--wod-border);
  background: rgba(255, 255, 255, .03);
  text-decoration: none;
  color: var(--wod-text);
  margin-bottom: 36px;
  transition: border-color .3s ease, transform .3s ease;
}

.wod-featured-xl:hover {
  color: var(--wod-text);
  text-decoration: none;
  border-color: rgba(200, 162, 74, .5);
}

.wod-featured-xl .wod-card-media {
  aspect-ratio: 16 / 9;
}

@media (min-width: 720px) {
  .wod-featured-xl .wod-card-media {
    aspect-ratio: 21 / 9;
  }
}

.wod-featured-xl .wod-card-body {
  padding: 30px 34px 34px;
}

.wod-featured-xl .wod-card-title {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}

.wod-featured-xl .wod-card-excerpt {
  font-size: 15px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
}

.wod-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wod-gold-bright);
}

.wod-featured-xl:hover .wod-read-more,
.wod-news-grid-item:hover .wod-read-more {
  color: var(--wod-fel-bright);
}

.wod-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

/* Responsive 3-col grid for the news listing page */
.wod-news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wod-news-grid-item {
  border-radius: 4px;
}

.wod-news-grid-item .wod-card-media {
  aspect-ratio: 16 / 10;
}

/* Pagination */
.wod-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.wod-pagination a,
.wod-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: var(--wod-radius-sm);
  border: 1px solid var(--wod-border);
  color: var(--wod-text-muted);
  font-size: 13px;
  text-decoration: none;
}

.wod-pagination a:hover {
  border-color: var(--wod-gold);
  color: var(--wod-text);
  text-decoration: none;
}

.wod-pagination .is-active {
  background: var(--wod-red-bright);
  border-color: var(--wod-red-bright);
  color: #fff;
}

/* Sidebar */
.wod-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wod-sidebar-box {
  border: 1px solid var(--wod-border);
  border-radius: var(--wod-radius-sm);
  background: rgba(255, 255, 255, .03);
  padding: 22px;
}

.wod-sidebar-box h5 {
  font-family: var(--wod-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wod-gold);
  margin: 0 0 18px;
}

.wod-sidebar-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--wod-text);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--wod-border);
}

.wod-sidebar-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.wod-sidebar-item:hover {
  color: var(--wod-text);
  text-decoration: none;
}

.wod-sidebar-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--wod-bg-elevated);
}

.wod-sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.wod-sidebar-item:hover .wod-sidebar-thumb img {
  transform: scale(1.08);
}

.wod-sidebar-item-title {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 4px;
}

.wod-sidebar-item-date {
  font-size: 11px;
  color: var(--wod-text-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.wod-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wod-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--wod-text-muted);
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.wod-category-list a:hover {
  color: var(--wod-text);
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
}

.wod-category-list a.is-active {
  color: var(--wod-gold-bright);
  background: rgba(200, 162, 74, .08);
}

/* -------------------------------------------------------------------- */
/* Article page                                                          */
/* -------------------------------------------------------------------- */

.wod-article-header {
  max-width: 850px;
  margin: 0 auto 32px;
  text-align: left;
}

.wod-article-meta-top {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--wod-text-faint);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.wod-article-hero {
  max-width: 1100px;
  margin: 0 auto 46px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--wod-border);
  aspect-ratio: 21 / 9;
}

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

.wod-article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: var(--wod-text-muted);
}

.wod-article-body p {
  margin: 0 0 24px;
}

.wod-article-body h2,
.wod-article-body h3 {
  font-family: var(--wod-font-display);
  color: #fff;
  margin: 40px 0 18px;
}

.wod-article-body h3 {
  font-size: 19px;
  margin-top: 28px;
}

.wod-article-body strong {
  color: var(--wod-text);
}

.wod-article-body ul,
.wod-article-body ol {
  margin: 0 0 24px;
  padding-left: 4px;
  list-style: none;
}

.wod-article-body ul li,
.wod-article-body ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.wod-article-body ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wod-gold);
}

.wod-article-body a {
  color: var(--wod-gold-bright);
}

.wod-article-body img {
  max-width: 100%;
  border-radius: 6px;
  margin: 10px 0;
}

/* Comments */
.wod-comments-section {
  max-width: 800px;
  margin: 64px auto 0;
}

.wod-comments-head {
  margin-bottom: 24px;
}

.wod-comment-box {
  border: 1px solid var(--wod-border);
  border-radius: var(--wod-radius-sm);
  background: rgba(255, 255, 255, .03);
  padding: 26px;
  text-align: center;
  margin-bottom: 30px;
}

.wod-comment-box p {
  color: var(--wod-text-muted);
  margin: 6px 0 18px;
}

.wod-comment-form textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--wod-border-strong);
  border-radius: var(--wod-radius-sm);
  color: var(--wod-text);
  font-family: var(--wod-font-body);
  font-size: 14px;
  padding: 14px;
  margin-bottom: 14px;
}

.wod-comment-form textarea:focus {
  outline: none;
  border-color: var(--wod-gold);
}

.wod-comment-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--wod-border);
  border-radius: var(--wod-radius-sm);
  background: rgba(255, 255, 255, .025);
  margin-bottom: 14px;
}

.wod-comment-avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.wod-comment-author {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--wod-text);
}

.wod-comment-date {
  font-size: 11px;
  color: var(--wod-text-faint);
  margin-left: 8px;
  text-transform: uppercase;
}

.wod-comment-text {
  font-size: 14px;
  color: var(--wod-text-muted);
  line-height: 1.6;
  margin-top: 6px;
}

@media (max-width: 960px) {
  .wod-news-layout { grid-template-columns: 1fr; }
  .wod-sidebar { position: static; }
  .wod-news-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wod-news-page { padding-top: 120px; }
  .wod-news-page-grid { grid-template-columns: 1fr; }
  .wod-article-body { font-size: 16px; }
}

/* ==========================================================================
   Auth pages (login / register / recovery)
   ========================================================================== */

.wod-auth-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 20px 80px;
  background-size: cover;
  background-position: center 25%;
  isolation: isolate;
}

.wod-auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,7,6,.75) 0%, rgba(8,7,6,.88) 55%, #0a0908 100%);
  z-index: 0;
}

.wod-auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: rgba(19, 17, 16, .72);
  border: 1px solid var(--wod-border-strong);
  border-radius: var(--wod-radius);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.wod-auth-card-wide {
  max-width: 480px;
}

.wod-auth-head {
  text-align: center;
  margin-bottom: 30px;
}

.wod-auth-head .wod-feature-icon {
  margin: 0 auto 16px;
}

.wod-auth-head h1 {
  font-family: var(--wod-font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.wod-auth-head p {
  font-size: 13.5px;
  color: var(--wod-text-muted);
  margin: 0;
}

.wod-field {
  margin-bottom: 16px;
}

.wod-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wod-text-faint);
  margin-bottom: 8px;
}

.wod-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.wod-input-wrap i {
  position: absolute;
  left: 16px;
  color: var(--wod-text-faint);
  font-size: 14px;
  pointer-events: none;
  transition: color .2s ease;
}

.wod-input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--wod-border-strong);
  border-radius: var(--wod-radius-sm);
  color: var(--wod-text);
  font-family: var(--wod-font-body);
  font-size: 14px;
  padding: 13px 16px 13px 44px;
  transition: border-color .2s ease, background-color .2s ease;
}

.wod-input-wrap input::placeholder {
  color: var(--wod-text-faint);
}

.wod-input-wrap input:focus {
  outline: none;
  border-color: var(--wod-gold);
  background: rgba(255, 255, 255, .06);
}

.wod-input-wrap input:focus + i,
.wod-input-wrap:focus-within i {
  color: var(--wod-gold-bright);
}

.wod-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 22px;
  flex-wrap: wrap;
}

.wod-link-muted {
  font-size: 12.5px;
  color: var(--wod-text-muted);
  text-decoration: none;
}

.wod-link-muted:hover {
  color: var(--wod-gold-bright);
  text-decoration: none;
}

.wod-auth-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--wod-text-muted);
}

.wod-auth-foot a {
  color: var(--wod-gold-bright);
  text-decoration: none;
  font-weight: 600;
}

.wod-auth-foot a:hover {
  text-decoration: underline;
}

.wod-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--wod-radius-sm);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 18px;
  border: 1px solid;
}

.wod-alert-error {
  background: rgba(168, 48, 44, .1);
  border-color: rgba(168, 48, 44, .4);
  color: #f2b3b0;
}

.wod-alert-success {
  background: rgba(95, 174, 75, .1);
  border-color: rgba(95, 174, 75, .4);
  color: #b7e6a8;
}

.wod-recaptcha-wrap {
  margin-bottom: 18px;
}

@media (max-width: 480px) {
  .wod-auth-card { padding: 30px 22px; }
}

/* ==========================================================================
   Generic inner-page components (forum, panel, store, vote, download, ...)
   ========================================================================== */

.wod-panel {
  border: 1px solid var(--wod-border);
  border-radius: var(--wod-radius-sm);
  background: rgba(255, 255, 255, .03);
  padding: 28px;
  margin-bottom: 24px;
}

.wod-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.wod-panel-head h2,
.wod-panel-head h3 {
  font-family: var(--wod-font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wod-panel-head h2 i,
.wod-panel-head h3 i {
  color: var(--wod-gold-bright);
  font-size: 16px;
}

.wod-list-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--wod-border);
  border-radius: var(--wod-radius-sm);
  background: rgba(255, 255, 255, .025);
  text-decoration: none;
  color: var(--wod-text);
  margin-bottom: 10px;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.wod-list-row:last-child {
  margin-bottom: 0;
}

.wod-list-row:hover {
  color: var(--wod-text);
  text-decoration: none;
  border-color: rgba(200, 162, 74, .4);
  background: rgba(255, 255, 255, .045);
}

.wod-list-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 162, 74, .08);
  border: 1px solid rgba(200, 162, 74, .25);
  color: var(--wod-gold-bright);
  font-size: 16px;
  background-size: cover;
  background-position: center;
}

.wod-list-main {
  flex: 1;
  min-width: 0;
}

.wod-list-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wod-list-sub {
  font-size: 12.5px;
  color: var(--wod-text-muted);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wod-list-meta {
  flex: 0 0 auto;
  text-align: center;
  font-size: 12px;
  color: var(--wod-text-faint);
  min-width: 70px;
}

.wod-list-meta strong {
  display: block;
  font-size: 15px;
  color: var(--wod-text);
  font-weight: 700;
}

.wod-list-last {
  flex: 0 0 auto;
  width: 220px;
  font-size: 12.5px;
  color: var(--wod-text-muted);
  text-align: right;
}

.wod-list-last a {
  color: var(--wod-text);
  text-decoration: none;
  font-weight: 600;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wod-list-last a:hover {
  color: var(--wod-gold-bright);
}

.wod-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  text-align: center;
}

.wod-stat-row .num {
  display: block;
  font-family: var(--wod-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--wod-gold-bright);
}

.wod-stat-row .lbl {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wod-text-faint);
}

.wod-pin {
  color: var(--wod-fel-bright);
  margin-right: 4px;
}

.wod-staff-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wod-red-bright);
  background: rgba(168, 48, 44, .12);
  border: 1px solid rgba(168, 48, 44, .35);
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 6px;
}

.wod-post-card {
  display: flex;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--wod-border);
  border-radius: var(--wod-radius-sm);
  background: rgba(255, 255, 255, .025);
  margin-bottom: 14px;
}

.wod-post-author {
  flex: 0 0 120px;
  text-align: center;
}

.wod-post-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

.wod-post-author-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.wod-post-author-meta {
  font-size: 11px;
  color: var(--wod-text-faint);
}

.wod-post-body {
  flex: 1;
  min-width: 0;
}

.wod-post-date {
  font-size: 11px;
  color: var(--wod-text-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
  display: block;
}

.wod-post-content {
  color: var(--wod-text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.wod-empty-state {
  text-align: center;
  padding: 60px 24px;
  border: 1px dashed var(--wod-border-strong);
  border-radius: var(--wod-radius);
}

.wod-empty-state i {
  font-size: 30px;
  color: var(--wod-text-faint);
  margin-bottom: 14px;
}

.wod-empty-state p {
  color: var(--wod-text-muted);
  margin: 0;
}

@media (max-width: 720px) {
  .wod-list-row { flex-wrap: wrap; }
  .wod-list-last { display: none; }
  .wod-post-card { flex-direction: column; }
  .wod-post-author { flex-direction: row; display: flex; align-items: center; gap: 10px; text-align: left; flex: none; }
  .wod-post-author img { margin-bottom: 0; }
}

/* ==========================================================================
   Account sidebar nav + tables
   ========================================================================== */

.wod-account-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wod-account-nav li {
  margin: 0;
}

.wod-account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wod-text-muted);
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.wod-account-nav a i {
  width: 16px;
  text-align: center;
  color: var(--wod-text-faint);
}

.wod-account-nav a:hover {
  color: var(--wod-text);
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
}

.wod-account-nav a.is-active,
.wod-account-nav li.uk-active a {
  color: var(--wod-gold-bright);
  background: rgba(200, 162, 74, .08);
}

.wod-account-nav a.is-active i,
.wod-account-nav li.uk-active a i {
  color: var(--wod-gold-bright);
}

.wod-faq-accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wod-faq-accordion > li {
  border: 1px solid var(--wod-border);
  border-radius: var(--wod-radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, .025);
}

.wod-faq-accordion .uk-accordion-title {
  display: block;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wod-text);
  text-decoration: none;
}

.wod-faq-accordion .uk-accordion-title:hover {
  color: var(--wod-gold-bright);
  text-decoration: none;
}

.wod-faq-accordion .uk-accordion-content {
  padding: 0 20px 18px;
  color: var(--wod-text-muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.wod-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid;
}

.wod-pill-danger {
  color: #f2b3b0;
  background: rgba(168, 48, 44, .12);
  border-color: rgba(168, 48, 44, .35);
}

.wod-pill-warning {
  color: #e0c47a;
  background: rgba(200, 162, 74, .12);
  border-color: rgba(200, 162, 74, .35);
}

.wod-pill-success {
  color: #b7e6a8;
  background: rgba(95, 174, 75, .12);
  border-color: rgba(95, 174, 75, .35);
}

.wod-account-nav-divider {
  height: 1px;
  background: var(--wod-border);
  margin: 8px 4px;
}

.wod-table-wrap {
  overflow-x: auto;
}

.wod-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.wod-table th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wod-text-faint);
  padding: 10px 12px;
  border-bottom: 1px solid var(--wod-border-strong);
  white-space: nowrap;
}

.wod-table td {
  padding: 12px;
  border-bottom: 1px solid var(--wod-border);
  color: var(--wod-text-muted);
  vertical-align: middle;
}

.wod-table tr:last-child td {
  border-bottom: none;
}

.wod-table tr:hover td {
  background: rgba(255, 255, 255, .02);
}

.wod-table .label-cell {
  color: var(--wod-text-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  width: 160px;
}

.wod-table .value-cell {
  color: var(--wod-text);
  font-weight: 500;
}

.wod-page-2col {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 860px) {
  .wod-page-2col { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Store
   ========================================================================== */

.wod-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wod-shop-card {
  position: relative;
  border: 1px solid var(--wod-border);
  border-radius: var(--wod-radius-sm);
  background: rgba(255, 255, 255, .025);
  overflow: hidden;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}

.wod-shop-card:hover {
  border-color: rgba(200, 162, 74, .4);
  transform: translateY(-2px);
}

.wod-shop-card img.wod-shop-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--wod-border);
}

.wod-shop-body {
  padding: 14px 12px 16px;
}

.wod-shop-desc {
  font-size: 12.5px;
  color: var(--wod-text-muted);
  min-height: 18px;
  margin-bottom: 8px;
}

.wod-shop-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--wod-gold-bright);
}

.wod-shop-price .uk-badge {
  background: transparent;
  color: var(--wod-text-faint);
  padding: 0 2px;
}

.wod-shop-add {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 9, 8, .75);
  color: var(--wod-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color .2s ease, color .2s ease;
}

.wod-shop-add:hover {
  background: var(--wod-red-bright);
  color: #fff;
}

@media (max-width: 720px) {
  .wod-shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .wod-shop-grid { grid-template-columns: 1fr 1fr; }
}

.wod-realm-tabs {
  margin-bottom: 20px !important;
}

.wod-realm-tabs li a {
  border: 1px solid var(--wod-border-strong);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wod-text-muted);
  background: rgba(255, 255, 255, .03);
}

.wod-realm-tabs li.uk-active a {
  color: var(--wod-gold-bright);
  border-color: rgba(200, 162, 74, .5);
  background: rgba(200, 162, 74, .08);
}
