/* ============================================================
   regalsport.ro — Main CSS
   CSS-Prefix: rgs-
   Fonts: Barlow Condensed (local) + Open Sans (local)
   ============================================================ */

/* --- Local Font Faces --- */
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --rgs-primary:          #1E5F3A;
  --rgs-primary-dark:     #163F28;
  --rgs-primary-light:    #2A7A4C;
  --rgs-accent:           #E8A020;
  --rgs-bg:               #FFFFFF;
  --rgs-bg-alt:           #F4F7F4;
  --rgs-text:             #1A1A1A;
  --rgs-meta:             #6B7B6E;
  --rgs-border:           #DDE8DE;

  --rgs-silo-academii:    #1E5F3A;
  --rgs-silo-jucatori:    #E8A020;
  --rgs-silo-antrenament: #2B7DA0;
  --rgs-silo-istorie:     #8B6A3E;

  --rgs-font-heading: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --rgs-font-body:    'Open Sans', Arial, sans-serif;

  --rgs-radius:           4px;
  --rgs-shadow-sidebar:   0 2px 8px rgba(0,0,0,0.08);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  font-family: var(--rgs-font-body);
  font-size: 17px;
  color: var(--rgs-text);
  background: var(--rgs-bg);
  line-height: 1.65;
}

a { color: var(--rgs-primary); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--rgs-primary-light); }
img { display: block; max-width: 100%; height: auto; }

/* ============================================================
   HEADER
   ============================================================ */
.rgs-topbar {
  background: var(--rgs-primary);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: relative;
  z-index: 100;
}

.rgs-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}

.rgs-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.rgs-logo:hover { text-decoration: none; }

.rgs-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rgs-nav a {
  font-family: var(--rgs-font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--rgs-radius);
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rgs-nav a:hover,
.rgs-nav a.rgs-current {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  text-decoration: none;
}

/* Mobile menu toggle */
.rgs-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.rgs-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.2s;
}

/* Silo-Tab Navigation */
.rgs-silo-tabs {
  background: var(--rgs-bg-alt);
  border-bottom: 1px solid var(--rgs-border);
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rgs-silo-tab {
  display: inline-block;
  font-family: var(--rgs-font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  color: var(--rgs-meta);
  border-bottom: 3px solid transparent;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.rgs-silo-tab:hover { text-decoration: none; }

.rgs-silo-tab--academii                              { color: var(--rgs-silo-academii); }
.rgs-silo-tab--academii:hover,
.rgs-silo-tab--academii.rgs-active                   { border-bottom-color: var(--rgs-silo-academii); }
.rgs-silo-tab--jucatori                              { color: var(--rgs-silo-jucatori); }
.rgs-silo-tab--jucatori:hover,
.rgs-silo-tab--jucatori.rgs-active                   { border-bottom-color: var(--rgs-silo-jucatori); }
.rgs-silo-tab--antrenament                           { color: var(--rgs-silo-antrenament); }
.rgs-silo-tab--antrenament:hover,
.rgs-silo-tab--antrenament.rgs-active                { border-bottom-color: var(--rgs-silo-antrenament); }
.rgs-silo-tab--istorie                               { color: var(--rgs-silo-istorie); }
.rgs-silo-tab--istorie:hover,
.rgs-silo-tab--istorie.rgs-active                    { border-bottom-color: var(--rgs-silo-istorie); }

/* ============================================================
   LAYOUT WRAPPER
   ============================================================ */
.rgs-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HERO — Split Layout
   ============================================================ */
.rgs-hero {
  background: var(--rgs-bg);
  border-bottom: 1px solid var(--rgs-border);
}

.rgs-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  min-height: 380px;
}

.rgs-hero-text {
  flex: 0 0 52%;
  padding: 48px 40px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rgs-border);
}

.rgs-hero-kicker {
  font-family: var(--rgs-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rgs-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rgs-hero-kicker::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--rgs-accent);
}

.rgs-hero-h1 {
  font-family: var(--rgs-font-heading);
  font-weight: 700;
  font-size: 58px;
  line-height: 1.02;
  color: var(--rgs-text);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.rgs-hero-h1 span { color: var(--rgs-primary); }

.rgs-hero-sub {
  font-size: 16px;
  color: var(--rgs-meta);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 420px;
}

.rgs-hero-cta {
  display: inline-block;
  background: var(--rgs-primary);
  color: #FFFFFF;
  font-family: var(--rgs-font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 28px;
  border-radius: var(--rgs-radius);
  text-decoration: none;
  transition: background 0.15s;
  align-self: flex-start;
}
.rgs-hero-cta:hover {
  background: var(--rgs-primary-light);
  text-decoration: none;
  color: #fff;
}

.rgs-hero-image {
  flex: 1;
  background: linear-gradient(135deg, #1E5F3A33 0%, #E8A02033 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  position: relative;
  overflow: hidden;
}
.rgs-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   FEATURED ARTICLE BAR
   ============================================================ */
.rgs-featured-wrap {
  background: var(--rgs-primary);
  padding: 0;
}
.rgs-featured-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.rgs-featured-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.rgs-featured-label {
  font-family: var(--rgs-font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rgs-accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.rgs-featured-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.rgs-featured-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--rgs-font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.rgs-featured-title {
  font-family: var(--rgs-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  flex: 1;
}
.rgs-featured-title a { color: #FFFFFF; text-decoration: none; }
.rgs-featured-title a:hover { text-decoration: underline; }
.rgs-featured-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--rgs-font-body);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   SILO BANDS — Homepage
   ============================================================ */
.rgs-silo-band {
  padding: 48px 0 40px;
}
.rgs-silo-band:nth-child(even) { background: var(--rgs-bg-alt); }
.rgs-silo-band:nth-child(odd)  { background: var(--rgs-bg); }

.rgs-silo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rgs-border);
}
.rgs-silo-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rgs-silo-title-block {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--rgs-font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  border-radius: var(--rgs-radius);
}
.rgs-silo-title-block--academii    { background: var(--rgs-silo-academii); }
.rgs-silo-title-block--jucatori    { background: var(--rgs-silo-jucatori); color: #1A1A1A; }
.rgs-silo-title-block--antrenament { background: var(--rgs-silo-antrenament); }
.rgs-silo-title-block--istorie     { background: var(--rgs-silo-istorie); }

.rgs-silo-desc {
  font-size: 13px;
  color: var(--rgs-meta);
  font-family: var(--rgs-font-body);
}
.rgs-silo-mehr {
  font-family: var(--rgs-font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--rgs-primary);
  text-decoration: none;
  white-space: nowrap;
}
.rgs-silo-mehr:hover { text-decoration: underline; }

/* Post Rows */
.rgs-post-rows { display: flex; flex-direction: column; gap: 0; }
.rgs-post-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rgs-border);
}
.rgs-post-row:last-child { border-bottom: none; }

.rgs-post-thumb {
  flex-shrink: 0;
  width: 96px;
  height: 64px;
  background: linear-gradient(135deg, #1E5F3A33 0%, #E8A02033 100%);
  border-radius: var(--rgs-radius);
  overflow: hidden;
}
.rgs-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rgs-post-row-content { flex: 1; min-width: 0; }
.rgs-post-row-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.rgs-badge {
  display: inline-block;
  font-family: var(--rgs-font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 2px;
  color: #FFFFFF;
  white-space: nowrap;
}
.rgs-badge--academii    { background: var(--rgs-silo-academii); }
.rgs-badge--jucatori    { background: var(--rgs-silo-jucatori); color: #1A1A1A; }
.rgs-badge--antrenament { background: var(--rgs-silo-antrenament); }
.rgs-badge--istorie     { background: var(--rgs-silo-istorie); }

.rgs-post-date {
  font-size: 12px;
  color: var(--rgs-meta);
  font-family: var(--rgs-font-body);
}

.rgs-post-row-title {
  font-family: var(--rgs-font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--rgs-text);
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rgs-post-row-title a { color: var(--rgs-text); text-decoration: none; }
.rgs-post-row-title a:hover { color: var(--rgs-primary); text-decoration: none; }

.rgs-post-row-teaser {
  font-size: 14px;
  color: var(--rgs-meta);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* ============================================================
   FOOTER
   ============================================================ */
.rgs-footer-credo {
  background: var(--rgs-primary);
  padding: 56px 24px 48px;
}
.rgs-footer-credo-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.rgs-footer-quote {
  font-family: var(--rgs-font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-bottom: 28px;
  quotes: none;
}
.rgs-footer-quote em { color: var(--rgs-accent); font-style: normal; }

.rgs-footer-sig {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rgs-footer-sig::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--rgs-accent);
  margin-bottom: 14px;
}
.rgs-footer-sig-name {
  font-family: var(--rgs-font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 1px;
}
.rgs-footer-sig-role {
  font-family: var(--rgs-font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

.rgs-footer-silos {
  background: var(--rgs-bg-alt);
  border-top: 3px solid var(--rgs-accent);
}
.rgs-footer-silos-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rgs-footer-silo-block {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  text-decoration: none;
  border-right: 1px solid var(--rgs-border);
  transition: background 0.15s;
}
.rgs-footer-silo-block:last-child { border-right: none; }
.rgs-footer-silo-block:hover { background: #FFFFFF; text-decoration: none; }

.rgs-footer-silo-label {
  font-family: var(--rgs-font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.rgs-footer-silo-block--academii    .rgs-footer-silo-label { color: var(--rgs-silo-academii); }
.rgs-footer-silo-block--jucatori    .rgs-footer-silo-label { color: var(--rgs-silo-jucatori); }
.rgs-footer-silo-block--antrenament .rgs-footer-silo-label { color: var(--rgs-silo-antrenament); }
.rgs-footer-silo-block--istorie     .rgs-footer-silo-label { color: var(--rgs-silo-istorie); }

.rgs-footer-silo-sub {
  font-family: var(--rgs-font-body);
  font-size: 12px;
  color: var(--rgs-meta);
}

.rgs-footer-bottom-bar {
  background: #1A1A1A;
  padding: 16px 24px;
}
.rgs-footer-bottom-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.rgs-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--rgs-font-body);
}
.rgs-footer-legal { display: flex; gap: 20px; }
.rgs-footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-family: var(--rgs-font-body);
}
.rgs-footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.rgs-article-top-bar {
  height: 6px;
}
.rgs-article-top-bar--academii    { background: var(--rgs-silo-academii); }
.rgs-article-top-bar--jucatori    { background: var(--rgs-silo-jucatori); }
.rgs-article-top-bar--antrenament { background: var(--rgs-silo-antrenament); }
.rgs-article-top-bar--istorie     { background: var(--rgs-silo-istorie); }

.rgs-breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--rgs-border);
}
.rgs-breadcrumb-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 12px;
  color: var(--rgs-meta);
  font-family: var(--rgs-font-body);
}
.rgs-breadcrumb a { color: var(--rgs-meta); text-decoration: none; }
.rgs-breadcrumb a:hover { color: var(--rgs-primary); }
.rgs-breadcrumb-sep { margin: 0 6px; color: var(--rgs-border); }

.rgs-article-wrap { padding: 40px 0 60px; }
.rgs-article-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.rgs-article-header {
  max-width: 100%;
  margin-bottom: 28px;
}
.rgs-article-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.rgs-read-time {
  font-size: 12px;
  color: var(--rgs-meta);
  font-family: var(--rgs-font-body);
}

.rgs-article-h1 {
  font-family: var(--rgs-font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--rgs-text);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.rgs-article-deco {
  width: 48px;
  height: 3px;
  background: var(--rgs-accent);
  margin-bottom: 16px;
}
.rgs-article-author-line {
  font-size: 13px;
  color: var(--rgs-meta);
  font-family: var(--rgs-font-body);
}
.rgs-article-author-line strong { color: var(--rgs-primary); font-weight: 600; }

.rgs-article-image {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-radius: var(--rgs-radius);
  margin-bottom: 32px;
  background: linear-gradient(135deg, #1E5F3A22 0%, #E8A02022 100%);
}
.rgs-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2-Column: Content + Sidebar */
.rgs-article-cols {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.rgs-article-content {
  flex: 0 0 68%;
  min-width: 0;
}

/* Article typography */
.rgs-article-content p { margin-bottom: 20px; line-height: 1.75; }

.rgs-article-content h2 {
  font-family: var(--rgs-font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rgs-text);
  margin: 36px 0 14px;
  padding-left: 16px;
  border-left: 4px solid var(--rgs-accent);
  line-height: 1.1;
}
.rgs-article-content h3 {
  font-family: var(--rgs-font-heading);
  font-size: 21px;
  font-weight: 500;
  color: var(--rgs-text);
  margin: 24px 0 10px;
}
.rgs-article-content h4 {
  font-family: var(--rgs-font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--rgs-text);
  margin: 20px 0 8px;
}
.rgs-article-content ul,
.rgs-article-content ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.rgs-article-content li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
}
.rgs-article-content strong { font-weight: 600; }
.rgs-article-content em { font-style: italic; }
.rgs-article-content blockquote {
  border-left: 4px solid var(--rgs-primary);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--rgs-bg-alt);
  font-style: italic;
  color: var(--rgs-meta);
}
.rgs-article-content a { color: var(--rgs-primary); text-decoration: underline; }
.rgs-article-content a:hover { color: var(--rgs-primary-light); }

/* FAQ Block */
.rgs-faq-block { margin: 32px 0; }
.rgs-faq-item {
  border: 1px solid var(--rgs-border);
  border-radius: var(--rgs-radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.rgs-faq-question {
  padding: 14px 18px;
  font-family: var(--rgs-font-heading);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  background: var(--rgs-bg-alt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.rgs-faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--rgs-primary);
  transition: transform 0.2s;
}
.rgs-faq-item.rgs-open .rgs-faq-question::after { transform: rotate(45deg); }
.rgs-faq-answer {
  display: none;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--rgs-text);
  border-top: 1px solid var(--rgs-border);
}
.rgs-faq-item.rgs-open .rgs-faq-answer { display: block; }

/* Sidebar */
.rgs-sidebar {
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 24px;
}
.rgs-sidebar-widget {
  background: var(--rgs-bg-alt);
  border: 1px solid var(--rgs-border);
  border-radius: var(--rgs-radius);
  box-shadow: var(--rgs-shadow-sidebar);
  margin-bottom: 24px;
  overflow: hidden;
}
.rgs-widget-header {
  background: var(--rgs-primary);
  padding: 10px 16px;
  font-family: var(--rgs-font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #FFFFFF;
}
.rgs-widget-body { padding: 16px; }

.rgs-sidebar-cta {
  display: block;
  background: var(--rgs-primary);
  color: #FFFFFF;
  font-family: var(--rgs-font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 16px;
  border-radius: var(--rgs-radius);
  text-decoration: none;
  text-align: center;
  margin-bottom: 8px;
  transition: background 0.15s;
}
.rgs-sidebar-cta:hover { background: var(--rgs-primary-light); color: #fff; text-decoration: none; }
.rgs-sidebar-cta-desc {
  font-size: 12px;
  color: var(--rgs-meta);
  text-align: center;
  line-height: 1.4;
}

.rgs-sidebar-post-list { list-style: none; }
.rgs-sidebar-post-list li {
  border-bottom: 1px solid var(--rgs-border);
  padding: 10px 0;
}
.rgs-sidebar-post-list li:last-child { border-bottom: none; }
.rgs-sidebar-post-list a {
  font-family: var(--rgs-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--rgs-text);
  line-height: 1.25;
  display: block;
  margin-bottom: 3px;
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rgs-sidebar-post-list a:hover { color: var(--rgs-primary); }
.rgs-sidebar-post-meta { font-size: 11px; color: var(--rgs-meta); font-family: var(--rgs-font-body); }

/* Author Box */
.rgs-author-box {
  border: 2px solid var(--rgs-primary);
  border-radius: var(--rgs-radius);
  padding: 24px;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--rgs-bg-alt);
}
.rgs-author-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rgs-primary) 0%, var(--rgs-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rgs-author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.rgs-author-avatar-initials {
  font-family: var(--rgs-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
}
.rgs-author-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rgs-primary);
  font-family: var(--rgs-font-body);
  margin-bottom: 4px;
}
.rgs-author-name {
  font-family: var(--rgs-font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rgs-text);
  margin-bottom: 8px;
}
.rgs-author-bio {
  font-size: 14px;
  color: var(--rgs-meta);
  line-height: 1.6;
}

/* ============================================================
   ARCHIVE PAGE
   ============================================================ */
.rgs-archive-header { padding: 48px 0 36px; }
.rgs-archive-header--academii    { background: var(--rgs-silo-academii); }
.rgs-archive-header--jucatori    { background: var(--rgs-silo-jucatori); }
.rgs-archive-header--antrenament { background: var(--rgs-silo-antrenament); }
.rgs-archive-header--istorie     { background: var(--rgs-silo-istorie); }

.rgs-archive-header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.rgs-archive-kicker {
  font-family: var(--rgs-font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.rgs-archive-h1 {
  font-family: var(--rgs-font-heading);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.rgs-archive-header--jucatori .rgs-archive-h1 { color: #1A1A1A; }
.rgs-archive-header--jucatori .rgs-archive-kicker { color: rgba(26,26,26,0.6); }
.rgs-archive-header--jucatori .rgs-archive-desc { color: rgba(26,26,26,0.75); }
.rgs-archive-header--jucatori .rgs-archive-count { color: rgba(26,26,26,0.5); }

.rgs-archive-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.55;
}
.rgs-archive-count {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--rgs-font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rgs-archive-list-wrap { padding: 40px 0 60px; }
.rgs-archive-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rgs-border);
  border-radius: var(--rgs-radius);
  overflow: hidden;
}
.rgs-archive-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--rgs-bg);
  border-bottom: 1px solid var(--rgs-border);
  transition: background 0.12s;
}
.rgs-archive-item:last-child { border-bottom: none; }
.rgs-archive-item:hover { background: var(--rgs-bg-alt); }

.rgs-archive-item-num {
  font-family: var(--rgs-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--rgs-border);
  width: 36px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}
.rgs-archive-item-content { flex: 1; min-width: 0; }
.rgs-archive-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.rgs-archive-item-title {
  font-family: var(--rgs-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--rgs-text);
  line-height: 1.2;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rgs-archive-item-title:hover { color: var(--rgs-primary); text-decoration: none; }
.rgs-archive-item-teaser {
  font-size: 13px;
  color: var(--rgs-meta);
  line-height: 1.45;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rgs-archive-item-right { text-align: right; flex-shrink: 0; }
.rgs-archive-item-date {
  font-size: 12px;
  color: var(--rgs-meta);
  font-family: var(--rgs-font-body);
  white-space: nowrap;
  display: block;
  margin-bottom: 4px;
}
.rgs-archive-item-readtime {
  font-size: 11px;
  color: var(--rgs-border);
  font-family: var(--rgs-font-body);
  white-space: nowrap;
}

/* Archive Grid Cards */
.rgs-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.rgs-archive-card {
  border: 1px solid var(--rgs-border);
  border-radius: var(--rgs-radius);
  overflow: hidden;
  background: var(--rgs-bg);
  transition: box-shadow 0.15s, transform 0.15s;
}
.rgs-archive-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.rgs-archive-card-image {
  height: 160px;
  background: linear-gradient(135deg, #1E5F3A33 0%, #E8A02033 100%);
  overflow: hidden;
}
.rgs-archive-card-image img { width: 100%; height: 100%; object-fit: cover; }
.rgs-archive-card-body { padding: 16px 20px 20px; }
.rgs-archive-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.rgs-archive-card-title {
  font-family: var(--rgs-font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--rgs-text);
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rgs-archive-card-title a { color: var(--rgs-text); text-decoration: none; }
.rgs-archive-card-title a:hover { color: var(--rgs-primary); }
.rgs-archive-card-teaser {
  font-size: 14px;
  color: var(--rgs-meta);
  line-height: 1.5;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.rgs-archive-card-readtime {
  font-size: 12px;
  color: var(--rgs-meta);
  font-family: var(--rgs-font-body);
  font-weight: 600;
}

/* Pagination */
.rgs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.rgs-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-family: var(--rgs-font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--rgs-radius);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.rgs-page-btn--active { background: var(--rgs-primary); color: #FFFFFF; }
.rgs-page-btn--outline {
  border: 1px solid var(--rgs-border);
  color: var(--rgs-meta);
  background: transparent;
}
.rgs-page-btn--outline:hover {
  border-color: var(--rgs-primary);
  color: var(--rgs-primary);
  text-decoration: none;
  background: transparent;
}

/* ============================================================
   STATIC PAGES (Despre, Contact)
   ============================================================ */
.rgs-page-wrap { padding: 48px 0 64px; }
.rgs-page-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.rgs-page-h1 {
  font-family: var(--rgs-font-heading);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rgs-text);
  margin-bottom: 24px;
  line-height: 1.05;
}
.rgs-page-content p { margin-bottom: 18px; line-height: 1.75; }
.rgs-page-content h2 {
  font-family: var(--rgs-font-heading);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rgs-text);
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--rgs-accent);
}
.rgs-page-content a { color: var(--rgs-primary); text-decoration: underline; }

/* Contact Form */
.rgs-contact-form { margin-top: 32px; }
.rgs-form-group { margin-bottom: 20px; }
.rgs-form-label {
  display: block;
  font-family: var(--rgs-font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--rgs-text);
  margin-bottom: 6px;
}
.rgs-form-input,
.rgs-form-textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--rgs-font-body);
  font-size: 16px;
  color: var(--rgs-text);
  background: var(--rgs-bg);
  border: 1px solid var(--rgs-border);
  border-radius: var(--rgs-radius);
  transition: border-color 0.15s;
  outline: none;
}
.rgs-form-input:focus,
.rgs-form-textarea:focus { border-color: var(--rgs-primary); }
.rgs-form-textarea { resize: vertical; min-height: 140px; }
.rgs-form-btn {
  display: inline-block;
  background: var(--rgs-primary);
  color: #FFFFFF;
  font-family: var(--rgs-font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 32px;
  border-radius: var(--rgs-radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.rgs-form-btn:hover { background: var(--rgs-primary-light); }

/* 404 */
.rgs-404-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.rgs-404-code {
  font-family: var(--rgs-font-heading);
  font-size: 120px;
  font-weight: 700;
  color: var(--rgs-border);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.rgs-404-title {
  font-family: var(--rgs-font-heading);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rgs-text);
  margin-bottom: 12px;
}
.rgs-404-text {
  font-size: 15px;
  color: var(--rgs-meta);
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SEARCH
   ============================================================ */
.rgs-search-form { display: flex; gap: 8px; max-width: 400px; }
.rgs-search-input {
  flex: 1;
  padding: 8px 12px;
  font-family: var(--rgs-font-body);
  font-size: 14px;
  border: 1px solid var(--rgs-border);
  border-radius: var(--rgs-radius);
  outline: none;
}
.rgs-search-input:focus { border-color: var(--rgs-primary); }
.rgs-search-btn {
  background: var(--rgs-primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--rgs-radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--rgs-font-body);
  transition: background 0.15s;
}
.rgs-search-btn:hover { background: var(--rgs-primary-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .rgs-hero-inner { flex-direction: column; min-height: auto; }
  .rgs-hero-text {
    flex: none;
    padding: 36px 0;
    border-right: none;
    border-bottom: 1px solid var(--rgs-border);
  }
  .rgs-hero-image { display: none; }
  .rgs-hero-h1 { font-size: 44px; }

  .rgs-article-cols { flex-direction: column; }
  .rgs-article-content { flex: none; width: 100%; }
  .rgs-sidebar { position: static; width: 100%; }

  .rgs-archive-grid { grid-template-columns: repeat(2, 1fr); }

  .rgs-footer-silos-inner { grid-template-columns: repeat(2, 1fr); }
  .rgs-footer-silo-block:nth-child(2) { border-right: none; }
}

@media (max-width: 600px) {
  .rgs-topbar { padding: 0 16px; }
  .rgs-nav { display: none; }
  .rgs-nav.rgs-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--rgs-primary-dark);
    padding: 12px 16px;
    z-index: 200;
  }
  .rgs-menu-toggle { display: flex; }

  .rgs-hero-h1 { font-size: 36px; }
  .rgs-article-h1 { font-size: 26px; }
  .rgs-archive-h1 { font-size: 32px; }
  .rgs-archive-grid { grid-template-columns: 1fr; }
  .rgs-footer-silos-inner { grid-template-columns: 1fr 1fr; }
  .rgs-footer-bottom-bar-inner { flex-direction: column; align-items: flex-start; }
  .rgs-featured-row { gap: 12px; }
  .rgs-featured-divider { display: none; }
  .rgs-container { padding: 0 16px; }
  .rgs-archive-item-num { display: none; }
  .rgs-archive-item-right { display: none; }
}
