/* =========================================================
   FOLIOCONTROL - RESSOURCES
   Liste des ressources, articles classiques et fiches études
   ========================================================= */

#blog {
  --rb-text: #111827;
  --rb-muted: #6b7280;
  --rb-border: #e5e7eb;
  --rb-primary: #2563eb;
  --rb-surface: #ffffff;

  width: 100%;
  padding: 40px 0 72px;
  background: var(--rb-surface);
  color: var(--rb-text);
}

#blog *,
#blog *::before,
#blog *::after {
  box-sizing: border-box;
}

#blog .rb-container,
#blog .rb-article-shell {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   PAGE LISTE
   ========================================================= */

#blog .rb-blog-header {
  margin-bottom: 28px;
}

#blog .rb-blog-header h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.15;
}

#blog .rb-blog-header p {
  margin: 0;
  color: var(--rb-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Catégories */

#blog .rb-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 30px;
}

#blog .rb-cat {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--rb-border);
  border-radius: 999px;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}

#blog .rb-cat:hover {
  background: #f9fafb;
}

#blog .rb-cat.is-active {
  border-color: #111827;
  background: #111827;
  color: #ffffff;
  font-weight: 600;
}

/* Grille */

#blog .rb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Cartes */

#blog .rb-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rb-border);
  border-radius: 16px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

#blog .rb-card:hover {
  border-color: #dbe3ef;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

#blog .rb-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  /*object-fit: cover;*/
  object-position: center;
  background: #f1f5f9;
}

#blog .rb-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

#blog .rb-tag {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.75rem;
  line-height: 1.4;
}

#blog .rb-meta {
  color: #9ca3af;
  font-size: 0.8125rem;
}

#blog .rb-card .rb-meta {
  margin-bottom: 6px;
}

#blog .rb-card-title {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 650;
  line-height: 1.4;
}

#blog .rb-card-excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--rb-muted);
  font-size: 0.875rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#blog .rb-read {
  margin-top: auto;
  color: var(--rb-primary);
  font-size: 0.875rem;
  font-weight: 600;
}

#blog .rb-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* =========================================================
   PAGE ARTICLE - STRUCTURE COMMUNE
   ========================================================= */

#blog .rb-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--rb-primary);
  font-size: 0.9375rem;
  text-decoration: none;
}

#blog .rb-back:hover {
  text-decoration: underline;
}

#blog .rb-article-header,
#blog .rb-hero-wrapper,
#blog .rb-content--standard {
  width: min(860px, 100%);
}

#blog .rb-article-header--study,
#blog .rb-hero-wrapper--study,
#blog .rb-content--study {
  width: 100%;
}

#blog .rb-article-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

#blog .rb-article-header .rb-meta {
  margin-top: 12px;
  color: var(--rb-muted);
  font-size: 0.9375rem;
}

#blog .rb-hero-wrapper {
  overflow: hidden;
  margin: 28px 0 36px;
  border-radius: 18px;
  background: #f1f5f9;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

#blog .rb-hero {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

#blog .rb-content {
  min-width: 0;
}

/* Article classique uniquement. Ne pas appliquer ces règles aux fiches études. */

#blog .rb-content--standard {
  font-size: 1rem;
  line-height: 1.8;
}

#blog .rb-content--standard > p:first-of-type {
  color: #1f2f46;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
}

#blog .rb-content--standard p {
  margin: 0 0 16px;
  color: #1f2937;
}

#blog .rb-content--standard h2 {
  margin: 38px 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--rb-primary);
  font-size: 1.5rem;
  line-height: 1.35;
}

#blog .rb-content--standard h3 {
  margin: 26px 0 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}

#blog .rb-content--standard ul,
#blog .rb-content--standard ol {
  margin: 20px 0;
  padding-left: 22px;
}

#blog .rb-content--standard li {
  margin-bottom: 8px;
}

#blog .rb-content--standard li p {
  margin: 0;
}

#blog .rb-content--standard img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 26px 0;
  border-radius: 14px;
}

#blog .rb-content--standard strong {
  font-weight: 650;
}

/* =========================================================
   FICHE ÉTUDE
   ========================================================= */

.fc-study-page {
  --fc-study-primary: #2563eb;
  --fc-study-primary-dark: #1d4ed8;
  --fc-study-primary-soft: #eff6ff;
  --fc-study-green: #16a34a;
  --fc-study-green-soft: #f0fdf4;
  --fc-study-orange: #d97706;
  --fc-study-orange-soft: #fffbeb;
  --fc-study-red: #dc2626;
  --fc-study-red-soft: #fef2f2;
  --fc-study-text: #172033;
  --fc-study-muted: #64748b;
  --fc-study-border: #e2e8f0;
  --fc-study-background: #f8fafc;
  --fc-study-white: #ffffff;

  width: 100%;
  margin: 0;
  padding: 0 0 32px;
  color: var(--fc-study-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

.fc-study-page *,
.fc-study-page *::before,
.fc-study-page *::after {
  box-sizing: border-box;
}

.fc-study-page a {
  color: inherit;
}

.fc-study-page p {
  margin: 0 0 18px;
}

.fc-study-page h1,
.fc-study-page h2,
.fc-study-page h3 {
  margin-top: 0;
  color: var(--fc-study-text);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.fc-study-page h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.fc-study-page h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Fil d'Ariane */

.fc-study-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--fc-study-muted);
  font-size: 0.88rem;
}

.fc-study-breadcrumb a {
  text-decoration: none;
}

.fc-study-breadcrumb a:hover {
  color: var(--fc-study-primary);
}

.fc-study-breadcrumb-separator {
  opacity: 0.55;
}

/* Hero interne de la fiche */

.fc-study-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.fc-study-hero::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 46px solid rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.fc-study-labels {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.fc-study-label {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--fc-study-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fc-study-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fc-study-primary);
}

.fc-study-title {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 5vw, 3.65rem);
  font-weight: 800;
}

.fc-study-intro {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: 28px !important;
  color: #475569;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.fc-study-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fc-study-meta-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--fc-study-muted);
  font-size: 0.88rem;
}

.fc-study-meta-item strong {
  color: var(--fc-study-text);
}

/* Grille principale */

.fc-study-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.fc-study-content {
  min-width: 0;
}

.fc-study-sidebar {
  position: sticky;
  top: 24px;
}

/* Cartes et sections */

.fc-study-card,
.fc-study-section {
  margin-bottom: 24px;
  border: 1px solid var(--fc-study-border);
  border-radius: 22px;
  background: var(--fc-study-white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.fc-study-card {
  padding: 24px;
}

.fc-study-section {
  padding: clamp(24px, 4vw, 38px);
}

.fc-study-section-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.fc-study-section-number {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--fc-study-primary-soft);
  color: var(--fc-study-primary);
  font-weight: 800;
}

.fc-study-section-header h2 {
  margin: 4px 0 0;
}

/* En bref */

.fc-study-summary {
  position: relative;
  overflow: hidden;
  border-color: #bfdbfe;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 75%);
}

.fc-study-summary-title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--fc-study-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fc-study-summary-title::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fc-study-primary);
  content: "";
}

.fc-study-summary p:last-child {
  margin-bottom: 0;
}

/* Chiffre clé */

.fc-study-key-number {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 26px 0;
  padding: 28px;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  background: var(--fc-study-background);
  text-align: center;
}

.fc-study-key-value {
  display: block;
  color: var(--fc-study-primary);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 850;
  line-height: 1;
}

.fc-study-key-caption {
  display: block;
  margin-top: 9px;
  color: var(--fc-study-muted);
  font-size: 0.84rem;
}

.fc-study-key-arrow {
  color: #94a3b8;
  font-size: 2rem;
}

.fc-study-source-note {
  margin: 0 !important;
  color: var(--fc-study-muted);
  font-size: 0.82rem;
  text-align: center;
}

/* Méthodes */

.fc-study-methods {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.fc-study-method {
  padding: 22px;
  border: 1px solid var(--fc-study-border);
  border-radius: 18px;
  background: var(--fc-study-background);
}

.fc-study-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 13px;
  background: var(--fc-study-primary-soft);
  color: var(--fc-study-primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.fc-study-method p {
  margin-bottom: 0;
  color: var(--fc-study-muted);
  font-size: 0.92rem;
}

/* Listes */

.fc-study-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fc-study-list li {
  position: relative;
  padding-left: 30px;
}

.fc-study-list li::before {
  position: absolute;
  top: 0.36em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fc-study-green-soft);
  color: var(--fc-study-green);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.fc-study-list--limits li::before {
  background: var(--fc-study-orange-soft);
  color: var(--fc-study-orange);
  content: "!";
}

/* Enseignements */

.fc-study-findings {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.fc-study-finding {
  padding: 22px;
  border: 1px solid var(--fc-study-border);
  border-left: 4px solid var(--fc-study-primary);
  border-radius: 4px 18px 18px 4px;
  background: #ffffff;
}

.fc-study-finding h3 {
  margin-bottom: 8px;
}

.fc-study-finding p {
  margin-bottom: 0;
  color: var(--fc-study-muted);
}

/* Montre / ne montre pas */

.fc-study-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fc-study-compare-card {
  padding: 24px;
  border: 1px solid;
  border-radius: 20px;
}

.fc-study-compare-card--yes {
  border-color: #bbf7d0;
  background: var(--fc-study-green-soft);
}

.fc-study-compare-card--no {
  border-color: #fecaca;
  background: var(--fc-study-red-soft);
}

.fc-study-compare-card h3 {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 14px;
}

.fc-study-compare-card ul {
  margin: 0;
  padding-left: 20px;
}

.fc-study-compare-card li + li {
  margin-top: 9px;
}

/* Notre lecture */

.fc-study-editorial {
  border-color: #c7d2fe;
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.fc-study-editorial-label {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #4338ca;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Sidebar */

.fc-study-sidebar-title {
  margin-bottom: 16px;
  font-size: 1rem;
}

.fc-study-toc {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fc-study-toc li + li {
  margin-top: 4px;
}

.fc-study-toc a {
  display: block;
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--fc-study-muted);
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.fc-study-toc a:hover {
  background: var(--fc-study-primary-soft);
  color: var(--fc-study-primary-dark);
}

.fc-study-facts {
  display: grid;
  gap: 13px;
}

.fc-study-fact {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--fc-study-border);
}

.fc-study-fact:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fc-study-fact-label {
  display: block;
  margin-bottom: 3px;
  color: var(--fc-study-muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fc-study-fact-value {
  color: var(--fc-study-text);
  font-size: 0.9rem;
  font-weight: 650;
}

.fc-study-source-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--fc-study-primary);
  border-radius: 12px;
  background: var(--fc-study-primary);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.fc-study-source-button:hover {
  background: var(--fc-study-primary-dark);
  transform: translateY(-1px);
}

.fc-study-source-button--secondary {
  margin-top: 10px;
  border-color: var(--fc-study-border);
  background: #ffffff;
  color: var(--fc-study-text) !important;
}

.fc-study-source-button--secondary:hover {
  border-color: #bfdbfe;
  background: var(--fc-study-primary-soft);
}

/* Référence */

.fc-study-reference {
  padding: 26px;
  border: 1px solid var(--fc-study-border);
  border-radius: 20px;
  background: #ffffff;
}

.fc-study-reference-title {
  margin-bottom: 10px;
  font-weight: 800;
}

.fc-study-reference p {
  color: var(--fc-study-muted);
}

.fc-study-reference p:last-child {
  margin-bottom: 0;
}

/* Avertissement */

.fc-study-disclaimer {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #fde68a;
  border-radius: 18px;
  background: #fffbeb;
  color: #78350f;
  font-size: 0.87rem;
}

.fc-study-disclaimer strong {
  display: block;
  margin-bottom: 6px;
  color: #92400e;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 920px) {
  .fc-study-layout {
    grid-template-columns: 1fr;
  }

  .fc-study-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    order: -1;
  }

  .fc-study-sidebar .fc-study-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #blog {
    padding: 28px 0 48px;
  }

  #blog .rb-container,
  #blog .rb-article-shell {
    width: min(100% - 28px, 1280px);
  }

  #blog .rb-grid {
    grid-template-columns: 1fr;
  }

  #blog .rb-article-title {
    font-size: 1.9rem;
  }

  #blog .rb-hero-wrapper {
    margin: 22px 0 28px;
    border-radius: 14px;
  }

  #blog .rb-hero {
    aspect-ratio: 16 / 9;
  }

  .fc-study-page {
    padding-bottom: 16px;
  }

  .fc-study-hero,
  .fc-study-section,
  .fc-study-card {
    border-radius: 18px;
  }

  .fc-study-methods,
  .fc-study-compare,
  .fc-study-sidebar {
    grid-template-columns: 1fr;
  }

  .fc-study-key-number {
    grid-template-columns: 1fr;
  }

  .fc-study-key-arrow {
    transform: rotate(90deg);
  }

  .fc-study-meta {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  #blog .rb-card-body {
    padding: 16px;
  }

  .fc-study-hero,
  .fc-study-section,
  .fc-study-card {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* ==========================================================================
   SOURCE OFFICIELLE
   ========================================================================== */

.rb-official-source {
    width: min(100%, 860px);
    margin: 0 auto 2rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #dfe5ec;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(248, 250, 252, 0.98),
            rgba(255, 255, 255, 0.98)
        );
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.rb-official-source--study {
    width: min(100%, 1280px);
}

.rb-official-source__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #e7ebf0;
}

.rb-official-source__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.rb-official-source__heading {
    margin: 0;
    color: #0f172a;
    font-size: 1.3rem;
    font-weight: 750;
    line-height: 1.25;
}

.rb-official-source__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    color: #64748b;
    font-size: 0.875rem;
    white-space: nowrap;
}

.rb-official-source__body {
    padding: 1rem 0;
}

.rb-official-source__organization {
    margin-bottom: 0.35rem;
    color: #b45309;
    font-size: 0.9rem;
    font-weight: 700;
}

.rb-official-source__title {
    max-width: 950px;
    color: #172033;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
}

.rb-official-source__notice {
    max-width: 950px;
    margin: 0.65rem 0 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.55;
}

.rb-official-source__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #e7ebf0;
}

.rb-official-source__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #b45309;
    font-weight: 700;
    text-decoration: none;
}

.rb-official-source__link:hover {
    color: #92400e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rb-official-source__arrow {
    transition: transform 0.2s ease;
}

.rb-official-source__link:hover .rb-official-source__arrow {
    transform: translateX(3px);
}

.rb-official-source__checked {
    color: #64748b;
    font-size: 0.8rem;
}
.rb-official-source__logo-wrapper {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 44px;
    padding: 0.35rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}

.rb-official-source__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 700px) {
    .rb-official-source {
        padding: 1.15rem;
        border-radius: 12px;
    }

    .rb-official-source__header,
    .rb-official-source__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .rb-official-source__identity {
        align-items: flex-start;
    }

    .rb-official-source__meta {
        justify-content: flex-start;
        white-space: normal;
    }

    .rb-official-source__logo-wrapper {
        width: 60px;
        height: 40px;
    }
}