:root {
  --wb-fx-black: #000000;
  --wb-fx-panel: #050606;
  --wb-fx-card: #0a0b0b;
  --wb-fx-card-top: #0e0f0f;
  --wb-fx-white: #f3f2ef;
  --wb-fx-muted: #b9b8b4;
  --wb-fx-line: #393b3b;
  --wb-fx-gold: #b89b5e;
  --wb-fx-gold-line: rgba(184, 155, 94, .72);
  --wb-fx-up: #72c055;
  --wb-fx-down: #ff2f2f;
}

.wb-fx-panel,
.wb-fx-page,
.wb-fx-error {
  box-sizing: border-box;
  color: var(--wb-fx-white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wb-fx-panel *,
.wb-fx-page * {
  box-sizing: border-box;
}

.wb-fx-panel {
  width: 100%;
  margin: 0 auto;
  padding: 28px 36px 14px;
  border: 1px solid rgba(184, 155, 94, .46);
  border-radius: 8px;
  background:
    radial-gradient(circle at 48% -18%, rgba(184,155,94,.055), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,0)),
    var(--wb-fx-panel);
}

.wb-fx-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
}

.wb-fx-title,
.wb-fx-page-title,
.wb-fx-pair,
.wb-fx-rate,
.wb-fx-month-rate,
.wb-fx-table td:not(.wb-fx-utility) {
  font-family: "Prata", "GFS Didot", Didot, "Times New Roman", serif;
  font-weight: 400;
}

.wb-fx-title {
  margin: 0 0 7px;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: .015em;
  color: var(--wb-fx-white);
}

.wb-fx-subtitle,
.wb-fx-page-subtitle {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--wb-fx-muted);
}

.wb-fx-source {
  margin-top: 7px;
  color: var(--wb-fx-gold);
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.wb-fx-source:hover {
  text-decoration: underline;
}

.wb-fx-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 36px;
}

.wb-fx-card {
  min-width: 0;
  min-height: 210px;
  padding: 14px 26px 15px;
  border: 1px solid var(--wb-fx-line);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, var(--wb-fx-card-top), var(--wb-fx-card));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.015),
    0 10px 28px rgba(0,0,0,.14);
  transition: border-color .18s ease, transform .18s ease;
}

.wb-fx-card:hover {
  border-color: rgba(184, 155, 94, .78);
  transform: translateY(-2px);
}

.wb-fx-pair {
  margin: 0 0 12px;
  font-size: 18.5px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #d5b36b;
}

.wb-fx-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.wb-fx-rate,
.wb-fx-month-rate {
  color: var(--wb-fx-white);
  font-variant-numeric: lining-nums tabular-nums;
}

.wb-fx-rate {
  font-size: 31px;
  line-height: 1;
  letter-spacing: .005em;
}

.wb-fx-date {
  font-size: 12px;
  line-height: 1;
  color: #b7b7b3;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.wb-fx-label-row {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.2;
  color: #c2c2be;
}

.wb-fx-change {
  font-size: 14.5px;
  line-height: 1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.wb-fx-up { color: var(--wb-fx-up); }
.wb-fx-down { color: var(--wb-fx-down); }
.wb-fx-flat { color: var(--wb-fx-muted); }

.wb-fx-divider {
  height: 1px;
  margin: 20px 0 15px;
  background: linear-gradient(90deg, var(--wb-fx-gold-line), rgba(184,155,94,.2));
}

.wb-fx-month {
  margin: 0 0 11px;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: .235em;
  text-transform: uppercase;
  color: #d2ad5f;
}

.wb-fx-month-rate {
  font-size: 22px;
  line-height: 1;
}

.wb-fx-month-label {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.15;
  color: #bdbdb9;
}

.wb-fx-footer {
  margin-top: 16px;
  text-align: center;
}

.wb-fx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 345px;
  min-height: 38px;
  padding: 8px 22px;
  border: 1px solid var(--wb-fx-gold);
  border-radius: 4px;
  color: #f4ead7;
  background: transparent;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.wb-fx-button:hover {
  background: var(--wb-fx-gold);
  color: #000;
}

.wb-fx-updated {
  margin: 7px 0 0;
  font-size: 11px;
  line-height: 1.2;
  color: #a9a9a5;
}

.wb-fx-page {
  width: 100%;
  margin: 0 auto;
}

.wb-fx-breadcrumb {
  margin: 0 0 10px;
  color: var(--wb-fx-gold);
  font-size: 12px;
  line-height: 1.3;
}

.wb-fx-page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 18px;
}

.wb-fx-page-title {
  margin: 0 0 5px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--wb-fx-white);
}

.wb-fx-update {
  min-width: 300px;
  padding: 12px 14px;
  border: 1px solid var(--wb-fx-line);
  border-radius: 6px;
  background: #080909;
  color: var(--wb-fx-muted);
  font-size: 12px;
  line-height: 1.45;
}

.wb-fx-update strong {
  color: var(--wb-fx-white);
  font-size: 14px;
  font-weight: 500;
}

.wb-fx-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
}

.wb-fx-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--wb-fx-line);
  border-radius: 6px;
  background: #080909;
}

.wb-fx-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.wb-fx-table th,
.wb-fx-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(184,155,94,.14);
  text-align: left;
  vertical-align: middle;
}

.wb-fx-table th {
  color: #cba963;
  font-size: 10.5px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.wb-fx-table td {
  color: var(--wb-fx-white);
  font-size: 18px;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
}

.wb-fx-table td.wb-fx-utility {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.wb-fx-table .wb-fx-table-pair {
  color: #d5b36b;
  font-size: 17px;
}

.wb-fx-table-small {
  display: block;
  margin-top: 4px;
  color: #aaa9a4;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wb-fx-side-card {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--wb-fx-line);
  border-radius: 6px;
  background: #090a0a;
}

.wb-fx-side-card h3 {
  margin: 0 0 10px;
  color: #d0aa5d;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.wb-fx-side-card p {
  margin: 0;
  color: #bdbdb8;
  font-size: 12.5px;
  line-height: 1.65;
}

.wb-fx-note {
  margin: 14px 0 0;
  color: #aaa9a4;
  font-size: 11px;
  line-height: 1.45;
}

.wb-fx-error {
  padding: 18px;
  border: 1px solid var(--wb-fx-line);
  color: var(--wb-fx-muted);
  background: #080909;
}

@media (max-width: 1280px) {
  .wb-fx-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 920px) {
  .wb-fx-page-grid { grid-template-columns: 1fr; }

  .wb-fx-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
  }

  .wb-fx-side-card { margin-bottom: 0; }
}

@media (max-width: 760px) {
  .wb-fx-panel {
    padding: 24px 16px 14px;
  }

  .wb-fx-header,
  .wb-fx-page-head {
    display: block;
  }

  .wb-fx-source {
    display: inline-block;
    margin-top: 12px;
  }

  .wb-fx-title { font-size: 27px; }
  .wb-fx-page-title { font-size: 30px; }

  .wb-fx-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .wb-fx-card {
    scroll-snap-align: start;
    padding-left: 22px;
    padding-right: 22px;
  }

  .wb-fx-button {
    width: 100%;
  }

  .wb-fx-update {
    min-width: 0;
    margin-top: 14px;
  }

  .wb-fx-sidebar {
    display: block;
  }

  .wb-fx-side-card {
    margin-bottom: 16px;
  }
}


.wb-fx-editor-placeholder {
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px dashed #b89b5e;
  color: #d8d8d8;
  background: #090909;
  font: 14px/1.5 "Segoe UI", Arial, sans-serif;
}


/* =========================================================
   WBIZNES.COM v0.1.3 — dopasowanie do strony Kursy walut
   ========================================================= */

/* Ukrywamy tytuł generowany przez motyw wyłącznie na stronie ID 1104.
   W module pozostaje własny tytuł zgodny z zaakceptowaną makietą. */
body.wb-fx-full-page .entry-title,
body.wb-fx-full-page .post-title,
body.wb-fx-full-page h1.page-title {
  display: none !important;
}

/* Rozszerzenie modułu poza wąski kontener treści Ashe Pro — tylko desktop/tablet. */
body.wb-fx-full-page .wb-fx-page {
  width: min(1540px, calc(100vw - 56px));
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  container-type: inline-size;
  container-name: wbfxpage;
}

/* Więcej przestrzeni dla tabeli; sidebar zachowuje proporcje z makiety. */
body.wb-fx-full-page .wb-fx-page-grid {
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 22px;
}

body.wb-fx-full-page .wb-fx-table {
  min-width: 1040px;
}

body.wb-fx-full-page .wb-fx-table th,
body.wb-fx-full-page .wb-fx-table td {
  padding-left: 13px;
  padding-right: 13px;
}

/* Gdy realny kontener modułu jest węższy, sidebar schodzi pod tabelę.
   Reagujemy na szerokość modułu, nie na szerokość całego okna. */
@container wbfxpage (max-width: 1120px) {
  body.wb-fx-full-page .wb-fx-page-grid {
    grid-template-columns: 1fr;
  }

  body.wb-fx-full-page .wb-fx-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  body.wb-fx-full-page .wb-fx-side-card {
    margin-bottom: 0;
  }
}

@container wbfxpage (max-width: 720px) {
  body.wb-fx-full-page .wb-fx-sidebar {
    display: block;
  }

  body.wb-fx-full-page .wb-fx-side-card {
    margin-bottom: 16px;
  }
}

@media (max-width: 760px) {
  body.wb-fx-full-page .wb-fx-page {
    width: 100%;
    position: static;
    left: auto;
    transform: none;
  }
}


/* =========================================================
   WBIZNES.COM v0.1.4 — bezpieczny układ i kolory zmian
   ========================================================= */

/* Bez wyciągania modułu poza kontener Ashe Pro.
   Poprzednie centrowanie przez left:50% + transform powodowało przycinanie. */
body.wb-fx-full-page .wb-fx-page {
  width: 100% !important;
  max-width: 100% !important;
  position: static !important;
  left: auto !important;
  transform: none !important;
  overflow: visible !important;
  container-type: inline-size;
  container-name: wbfxpage;
}

/* Pełna szerokość dla tabeli, metodologia pod tabelą.
   To jest bezpieczniejsze w realnym kontenerze Ashe Pro. */
body.wb-fx-full-page .wb-fx-page-grid {
  grid-template-columns: 1fr !important;
  gap: 20px !important;
}

body.wb-fx-full-page .wb-fx-sidebar {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

body.wb-fx-full-page .wb-fx-side-card {
  margin-bottom: 0 !important;
}

/* Tabela może przewijać się poziomo zamiast wychodzić poza ekran. */
body.wb-fx-full-page .wb-fx-table-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

body.wb-fx-full-page .wb-fx-table {
  min-width: 980px !important;
}

/* Kolory zmian — wyższa specyficzność niż ogólna reguła komórek tabeli. */
body.wb-fx-full-page .wb-fx-table td.wb-fx-up,
body.wb-fx-full-page .wb-fx-change.wb-fx-up {
  color: var(--wb-fx-up) !important;
}

body.wb-fx-full-page .wb-fx-table td.wb-fx-down,
body.wb-fx-full-page .wb-fx-change.wb-fx-down {
  color: var(--wb-fx-down) !important;
}

body.wb-fx-full-page .wb-fx-table td.wb-fx-flat,
body.wb-fx-full-page .wb-fx-change.wb-fx-flat {
  color: var(--wb-fx-muted) !important;
}

/* Węższe ekrany */
@container wbfxpage (max-width: 720px) {
  body.wb-fx-full-page .wb-fx-sidebar {
    display: block !important;
  }

  body.wb-fx-full-page .wb-fx-side-card {
    margin-bottom: 16px !important;
  }
}

@media (max-width: 760px) {
  body.wb-fx-full-page .wb-fx-page {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.wb-fx-full-page .wb-fx-table {
    min-width: 900px !important;
  }
}


/* =========================================================
   WBIZNES.COM v0.1.5 — pełny układ tablet/telefon
   ========================================================= */

.wb-fx-responsive-list {
  display: none;
}

.wb-fx-responsive-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--wb-fx-line);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, var(--wb-fx-card-top), var(--wb-fx-card));
}

.wb-fx-responsive-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,155,94,.32);
}

.wb-fx-responsive-card-head h3 {
  margin: 0 0 4px;
  color: #d5b36b;
  font-family: "Prata", "GFS Didot", Didot, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
}

.wb-fx-responsive-date {
  color: #aaa9a4;
  font-size: 10px;
  letter-spacing: .06em;
}

.wb-fx-responsive-current {
  color: var(--wb-fx-white);
  font-family: "Prata", "GFS Didot", Didot, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
}

.wb-fx-responsive-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.wb-fx-responsive-item {
  min-width: 0;
  padding: 14px 10px 4px 0;
}

.wb-fx-responsive-item:nth-child(even) {
  padding-left: 14px;
  padding-right: 0;
  border-left: 1px solid rgba(184,155,94,.16);
}

.wb-fx-responsive-label {
  display: block;
  margin-bottom: 5px;
  color: #aaa9a4;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wb-fx-responsive-item strong {
  color: var(--wb-fx-white);
  font-family: "Prata", "GFS Didot", Didot, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
}

.wb-fx-responsive-item strong.wb-fx-up {
  color: var(--wb-fx-up) !important;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.wb-fx-responsive-item strong.wb-fx-down {
  color: var(--wb-fx-down) !important;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.wb-fx-responsive-item strong.wb-fx-flat {
  color: var(--wb-fx-muted) !important;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* Tablet: zamiast szerokiej tabeli pokazujemy dwie kolumny kart. */
@media (max-width: 1100px) {
  body.wb-fx-full-page .wb-fx-table-wrap {
    display: none !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
  }

  body.wb-fx-full-page .wb-fx-page {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body.wb-fx-full-page .wb-fx-page-head {
    align-items: stretch;
  }

  body.wb-fx-full-page .wb-fx-update {
    min-width: 250px;
  }
}

/* Telefon: pojedyncza karta na całą szerokość. */
@media (max-width: 680px) {
  body.wb-fx-full-page .wb-fx-responsive-list {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  body.wb-fx-full-page .wb-fx-page-head {
    display: block !important;
  }

  body.wb-fx-full-page .wb-fx-update {
    width: 100% !important;
    min-width: 0 !important;
    margin-top: 16px !important;
  }

  body.wb-fx-full-page .wb-fx-page-title {
    font-size: 28px !important;
  }

  body.wb-fx-full-page .wb-fx-page-subtitle {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body.wb-fx-full-page .wb-fx-breadcrumb {
    font-size: 10px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-card {
    padding: 16px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-current {
    font-size: 25px !important;
  }

  body.wb-fx-full-page .wb-fx-sidebar {
    display: block !important;
  }

  body.wb-fx-full-page .wb-fx-side-card {
    margin-bottom: 14px !important;
  }

  body.wb-fx-full-page .wb-fx-note {
    font-size: 10px !important;
    line-height: 1.45 !important;
  }
}


/* =========================================================
   WBIZNES.COM v0.1.6 — finalne strojenie widoku mobilnego
   ========================================================= */

@media (max-width: 680px) {
  /* Breadcrumb na telefonie nie wnosi wystarczającej wartości,
     a zabiera cenną przestrzeń nad nagłówkiem. */
  body.wb-fx-full-page .wb-fx-breadcrumb {
    display: none !important;
  }

  body.wb-fx-full-page .wb-fx-page-head {
    margin-bottom: 14px !important;
  }

  body.wb-fx-full-page .wb-fx-page-title {
    margin-bottom: 8px !important;
    font-size: 25px !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    white-space: nowrap;
  }

  body.wb-fx-full-page .wb-fx-page-subtitle {
    max-width: 100% !important;
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }

  body.wb-fx-full-page .wb-fx-update {
    padding: 12px 14px !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  body.wb-fx-full-page .wb-fx-update strong {
    font-size: 14px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-card {
    padding: 15px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-card-head {
    gap: 12px !important;
    padding-bottom: 12px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-card-head h3 {
    font-size: 17px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-current {
    font-size: 24px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-item {
    padding-top: 12px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-label {
    font-size: 9px !important;
    line-height: 1.35 !important;
    letter-spacing: .07em !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-item strong {
    font-size: 16px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-item strong.wb-fx-up,
  body.wb-fx-full-page .wb-fx-responsive-item strong.wb-fx-down,
  body.wb-fx-full-page .wb-fx-responsive-item strong.wb-fx-flat {
    font-size: 13px !important;
  }

  body.wb-fx-full-page .wb-fx-side-card {
    padding: 16px !important;
  }

  body.wb-fx-full-page .wb-fx-side-card h3 {
    font-size: 10px !important;
  }

  body.wb-fx-full-page .wb-fx-side-card p {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }
}

/* Bardzo wąskie telefony */
@media (max-width: 360px) {
  body.wb-fx-full-page .wb-fx-page-title {
    font-size: 23px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-current {
    font-size: 22px !important;
  }

  body.wb-fx-full-page .wb-fx-responsive-card-head h3 {
    font-size: 16px !important;
  }
}


/* =========================================================
   WBIZNES.COM v0.1.7 — Source Serif 4 w tekstach opisowych
   Tabele pozostają bez zmian.
   ========================================================= */

body.wb-fx-full-page .wb-fx-page-subtitle,
body.wb-fx-full-page .wb-fx-update,
body.wb-fx-full-page .wb-fx-update strong,
body.wb-fx-full-page .wb-fx-update .wb-fx-source,
body.wb-fx-full-page .wb-fx-side-card p {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif !important;
}


/* =========================================================
   WBIZNES.COM v0.1.8 — Source Serif 4 w nocie informacyjnej
   Tabele i pozostałe elementy pozostają bez zmian.
   ========================================================= */

body.wb-fx-full-page .wb-fx-note {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif !important;
}


/* =========================================================
   WBIZNES.COM v0.1.9 — wyrównanie danych w tabeli desktopowej
   Bez zmian w treści, kolorach, fontach i kartach mobilnych.
   ========================================================= */

body.wb-fx-full-page .wb-fx-table th,
body.wb-fx-full-page .wb-fx-table td {
  text-align: center !important;
}

body.wb-fx-full-page .wb-fx-table th {
  vertical-align: middle !important;
}

body.wb-fx-full-page .wb-fx-table td {
  vertical-align: top !important;
}

/* Wartości główne w kolumnach kursowych startują na tej samej wysokości. */
body.wb-fx-full-page .wb-fx-table td {
  padding-top: 14px !important;
}

body.wb-fx-full-page .wb-fx-table-small {
  text-align: center !important;
}


/* =========================================================
   WBIZNES.COM v0.1.10 — identyczny poziom wartości kursowych
   ========================================================= */

body.wb-fx-full-page .wb-fx-table-value {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

body.wb-fx-full-page .wb-fx-table-small {
  display: block !important;
  margin-top: 4px !important;
  line-height: 1.2 !important;
}

body.wb-fx-full-page .wb-fx-table-small-empty {
  visibility: hidden !important;
}

/* Wszystkie trzy główne wartości kursowe zaczynają się dokładnie
   od tej samej górnej krawędzi komórki. */
body.wb-fx-full-page .wb-fx-table tbody td:nth-child(2),
body.wb-fx-full-page .wb-fx-table tbody td:nth-child(3),
body.wb-fx-full-page .wb-fx-table tbody td:nth-child(5) {
  vertical-align: top !important;
  padding-top: 14px !important;
}


/* =========================================================
   WBIZNES.COM v0.1.11 — subtelne CTA kontaktowe
   Tabele i istniejący układ pozostają bez zmian.
   ========================================================= */

body.wb-fx-full-page .wb-fx-contact-cta {
  margin: 26px 0 0;
  text-align: center;
  color: #d8d8d8;
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif !important;
  font-size: 16px;
  line-height: 1.5;
}

body.wb-fx-full-page .wb-fx-contact-cta a {
  color: var(--wb-fx-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 155, 94, .55);
  transition: color .18s ease, border-color .18s ease;
}

body.wb-fx-full-page .wb-fx-contact-cta a:hover {
  color: #f2f2f2;
  border-bottom-color: var(--wb-fx-gold);
}

@media (max-width: 680px) {
  body.wb-fx-full-page .wb-fx-contact-cta {
    margin-top: 20px;
    font-size: 15px;
  }
}

/* =========================================================
   WBIZNES.COM v0.2.2 — moduł strony głównej PL/EN
   Układ pionowy dla wąskiego sidebara, bez złotych elementów.
   ========================================================= */

body .wb-fx-home,
body .wb-fx-home * {
  box-sizing: border-box;
}

body .wb-fx-home {
  width: 100%;
  margin: 0;
  color: #f2f2f2;
  background: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body .wb-fx-home-title {
  margin: 0 0 13px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.38);
  color: #f2f2f2;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: .19em;
  text-align: center;
  text-transform: uppercase;
}

body .wb-fx-home-list {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

body .wb-fx-home-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 10px;
  align-items: start;
  width: 100%;
  padding: 10px 1px 9px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

body .wb-fx-home-row:last-child {
  border-bottom: 0;
}

body .wb-fx-home-pair,
body .wb-fx-home-rate {
  color: #f2f2f2;
  font-family: "Prata", "GFS Didot", Didot, Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
}

body .wb-fx-home-pair {
  min-width: 0;
  padding-top: 1px;
  font-size: 13px;
  line-height: 1.08;
  white-space: nowrap;
}

body .wb-fx-home-quote {
  min-width: 0;
  text-align: right;
}

body .wb-fx-home-rate {
  display: block;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

body .wb-fx-home-date {
  display: block;
  margin-top: 4px;
  color: #9f9f9f;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 7.5px;
  line-height: 1;
  letter-spacing: .03em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

body .wb-fx-home-footer {
  margin-top: 14px;
  text-align: center;
}

body .wb-fx-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  min-height: 29px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.58);
  color: #f2f2f2;
  background: transparent;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 8px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

body .wb-fx-home-button:hover,
body .wb-fx-home-button:focus {
  border-color: #f2f2f2;
  color: #000;
  background: #f2f2f2;
  text-decoration: none;
}

@media (max-width: 420px) {
  body .wb-fx-home-title {
    font-size: 9.5px;
  }

  body .wb-fx-home-row {
    padding-top: 11px;
    padding-bottom: 10px;
  }

  body .wb-fx-home-pair {
    font-size: 14px;
  }

  body .wb-fx-home-rate {
    font-size: 17px;
  }

  body .wb-fx-home-date {
    font-size: 8px;
  }
}
