  :root {
    color-scheme: light;
    background: #eef3fb;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    color: #1f2a37;
    background:
      radial-gradient(circle at 12% 4%, rgba(82, 194, 157, 0.16), transparent 28rem),
      radial-gradient(circle at 88% 12%, rgba(93, 124, 255, 0.16), transparent 30rem),
      #f4f7ff;
  }

  .standalone-header {
    position: sticky;
    top: 10px;
    z-index: 20;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1218px, calc(100% - 40px));
    margin: 12px auto 0;
    padding: 10px 12px 10px 20px;
    box-sizing: border-box;
    border: 1px solid rgba(115, 132, 164, 0.18);
    border-radius: 24px;
    background:
      linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.93)),
      radial-gradient(circle at 12% 0%, rgba(82, 194, 157, 0.12), transparent 16rem);
    box-shadow: 0 12px 32px rgba(44, 62, 100, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-family: Inter, "Segoe UI", sans-serif;
  }

  .standalone-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #263552;
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -0.03em;
    text-decoration: none;
  }

  .standalone-brand::before {
    content: "";
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #5d7cff, #52c29d);
    box-shadow: 0 0 0 5px rgba(93, 124, 255, 0.1);
  }

  .standalone-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
  }

  .standalone-main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .standalone-main-nav a {
    color: #53627a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
  }

  .standalone-main-nav a:hover {
    color: #405fd1;
    border-color: rgba(93, 124, 255, 0.14);
    background: rgba(93, 124, 255, 0.07);
    transform: translateY(-1px);
  }

  .standalone-mobile-login {
    display: none;
  }

  .standalone-account-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .standalone-language-links {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(115, 132, 164, 0.22);
    border-radius: 11px;
    background-color: rgba(255, 255, 255, 0.78);
  }

  .standalone-language-links:focus-within {
    border-color: rgba(93, 124, 255, 0.48);
    box-shadow: 0 0 0 3px rgba(93, 124, 255, 0.1);
  }

  .standalone-language-links a {
    min-width: 27px;
    padding: 7px 6px;
    border-radius: 8px;
    color: #607089;
    font: 800 11px/1 Inter, "Segoe UI", sans-serif;
    text-align: center;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
  }

  .standalone-language-links a:hover,
  .standalone-language-links a:focus-visible {
    color: #405fd1;
    background: rgba(93, 124, 255, 0.09);
    outline: none;
  }

  .standalone-language-links a.is-active {
    color: #fff;
    background: linear-gradient(135deg, #5d7cff, #52c29d);
    box-shadow: 0 4px 10px rgba(68, 110, 220, 0.18);
  }

  .standalone-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, #5d7cff, #52c29d);
    box-shadow: 0 8px 18px rgba(68, 110, 220, 0.2);
    font: 800 13px/1 Inter, "Segoe UI", sans-serif;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  }

  .standalone-login:hover,
  .standalone-login:focus-visible {
    color: #fff;
    filter: saturate(1.08);
    box-shadow: 0 10px 22px rgba(68, 110, 220, 0.27);
    transform: translateY(-1px);
    outline: none;
  }

  .standalone-account-strip {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(115, 132, 164, 0.13);
    color: #40516d;
  }

  .standalone-account-strip[hidden] {
    display: none;
  }

  .standalone-account-strip-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
  }

  .standalone-account-strip-item {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    box-sizing: border-box;
    padding: 4px 10px;
    border: 1px solid rgba(115, 132, 164, 0.14);
    border-radius: 9px;
    background: rgba(244, 247, 255, 0.84);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: 0.01em;
  }

  .standalone-account-strip-item.is-user {
    color: #2e5fbc;
    border-color: rgba(93, 124, 255, 0.18);
    background: rgba(93, 124, 255, 0.08);
  }

  .mediatorek-account-usage {
    width: fit-content;
    margin: -4px 0 22px;
    padding: 9px 13px;
    border: 1px solid rgba(82, 194, 157, 0.24);
    border-radius: 12px;
    color: #287b66;
    background: rgba(82, 194, 157, 0.09);
    font-size: 13px;
    font-weight: 750;
  }

  .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .mediatorek-auth-main {
    width: min(980px, calc(100% - 40px));
    margin: 52px auto 0;
    font-family: Inter, "Segoe UI", sans-serif;
  }

  .mediatorek-auth-intro {
    max-width: 720px;
    margin: 0 auto 24px;
    text-align: center;
  }

  .mediatorek-auth-intro h1 {
    margin: 6px 0 14px;
    color: #202b3d;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .mediatorek-auth-intro > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: #657188;
    font-size: 16px;
    line-height: 1.75;
  }

  .mediatorek-auth-card {
    width: min(520px, 100%);
    min-height: 430px;
    margin: 0 auto;
    padding: 28px;
    box-sizing: border-box;
    border: 1px solid rgba(115, 132, 164, 0.16);
    border-radius: 28px;
    background:
      radial-gradient(circle at 100% 0%, rgba(82, 194, 157, 0.1), transparent 20rem),
      rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 58px rgba(44, 62, 100, 0.12);
  }

  .mediatorek-auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding: 5px;
    border-radius: 15px;
    background: #f0f4fb;
  }

  .mediatorek-auth-tabs button {
    min-height: 43px;
    border: 0;
    border-radius: 11px;
    color: #627089;
    background: transparent;
    font: 800 14px/1 Inter, "Segoe UI", sans-serif;
    cursor: pointer;
  }

  .mediatorek-auth-tabs button.is-active {
    color: #2c456f;
    background: #fff;
    box-shadow: 0 6px 16px rgba(55, 75, 112, 0.09);
  }

  .mediatorek-auth-status {
    min-height: 22px;
    margin: 16px 0 4px;
    color: #667085;
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
  }

  .mediatorek-auth-status.is-error,
  .mediatorek-auth-status.is-success {
    padding: 10px 12px;
    border-radius: 11px;
  }

  .mediatorek-auth-status.is-error {
    color: #9d354d;
    background: #fff0f3;
  }

  .mediatorek-auth-status.is-success {
    color: #24705d;
    background: #ebfaf5;
  }

  .mediatorek-auth-form {
    display: grid;
    gap: 15px;
    margin-top: 14px;
  }

  .mediatorek-auth-field {
    display: grid;
    gap: 7px;
  }

  .mediatorek-auth-field label {
    color: #34425a;
    font-size: 13px;
    font-weight: 800;
  }

  .mediatorek-auth-field input {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px;
    box-sizing: border-box;
    border: 1px solid rgba(115, 132, 164, 0.28);
    border-radius: 13px;
    color: #263552;
    background: #fbfcff;
    font: 500 15px/1.3 Inter, "Segoe UI", sans-serif;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  }

  .mediatorek-auth-field input:focus {
    border-color: rgba(93, 124, 255, 0.62);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(93, 124, 255, 0.1);
  }

  .mediatorek-auth-hint {
    margin: -5px 0 0;
    color: #748096;
    font-size: 12px;
    line-height: 1.55;
  }

  .mediatorek-auth-panel-copy {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
  }

  #authOtherEmailField {
    display: grid;
    gap: 10px;
  }

  .mediatorek-auth-invitation-reference {
    margin: 0;
    padding: 10px 12px;
    border-radius: 11px;
    color: #2f5b50;
    background: #edf9f5;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
  }

  .mediatorek-auth-card .mediatorek-send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    text-decoration: none;
  }

  .mediatorek-auth-text-button {
    justify-self: center;
    padding: 5px;
    border: 0;
    color: #5068bd;
    background: transparent;
    font: 750 13px/1.4 Inter, "Segoe UI", sans-serif;
    cursor: pointer;
  }

  .mediatorek-auth-panel-heading {
    margin: 18px 0 4px;
    text-align: center;
  }

  .mediatorek-auth-panel-heading h2 {
    margin: 0 0 8px;
    color: #263552;
    font-size: 25px;
    letter-spacing: -0.025em;
  }

  .mediatorek-auth-panel-heading p {
    margin: 0;
    color: #6b778d;
    font-size: 13px;
    line-height: 1.6;
  }

  .mediatorek-account-details {
    display: grid;
    gap: 10px;
    margin: 22px 0;
  }

  .mediatorek-account-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 15px;
    border: 1px solid rgba(115, 132, 164, 0.13);
    border-radius: 13px;
    background: #f8faff;
  }

  .mediatorek-account-details dt {
    color: #728097;
    font-size: 12px;
    font-weight: 750;
  }

  .mediatorek-account-details dd {
    margin: 0;
    color: #2c3a52;
    font-size: 13px;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .mediatorek-auth-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mediatorek-notification-settings {
    margin: 0 0 20px;
    padding: 16px;
    border: 1px solid rgba(115, 132, 164, 0.16);
    border-radius: 14px;
    background: #f8faff;
  }

  .mediatorek-notification-settings h3 {
    margin: 0 0 12px;
    color: #263552;
    font-size: 16px;
  }

  .mediatorek-notification-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3a52;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
  }

  .mediatorek-notification-toggle input {
    width: 19px;
    height: 19px;
    margin: 0;
    accent-color: #4c6cdc;
  }

  .mediatorek-notification-settings > p {
    margin: 9px 0 0;
    color: #6b778d;
    font-size: 12px;
    line-height: 1.55;
  }

  .mediatorek-notification-status.is-success {
    color: #177257;
  }

  .mediatorek-notification-status.is-error {
    color: #b4233c;
  }

  .mediatorek-auth-secondary {
    min-height: 48px;
    border: 1px solid rgba(115, 132, 164, 0.23);
    border-radius: 13px;
    color: #53627a;
    background: #fff;
    font: 800 14px/1 Inter, "Segoe UI", sans-serif;
    cursor: pointer;
  }

  body:has(#authAccountPanel:not([hidden])) .mediatorek-auth-card {
    width: min(920px, 100%);
  }

  .mediatorek-mediation-workspace {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(115, 132, 164, 0.18);
  }

  .mediatorek-mediation-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
  }

  .mediatorek-mediation-heading h3 {
    margin: 0;
    color: #263552;
    font-size: 22px;
  }

  .mediatorek-mediation-heading p {
    margin: 0;
    color: #667085;
    font-size: 12px;
  }

  .mediatorek-mediation-heading p.is-error {
    color: #9d354d;
  }

  .mediatorek-mediation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mediatorek-mediation-item {
    position: relative;
    display: grid;
    gap: 5px;
    padding: 14px 92px 14px 15px;
    border: 1px solid rgba(115, 132, 164, 0.18);
    border-radius: 14px;
    color: #53627a;
    background: #f9fbff;
    text-align: left;
    cursor: pointer;
  }

  .mediatorek-mediation-item.is-active {
    border-color: rgba(76, 108, 220, 0.45);
    background: #f1f4ff;
    box-shadow: 0 0 0 3px rgba(76, 108, 220, 0.08);
  }

  .mediatorek-mediation-item strong {
    color: #263552;
    font-size: 14px;
  }

  .mediatorek-mediation-item > span:not(.mediatorek-mediation-state) {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mediatorek-mediation-state {
    position: absolute;
    top: 13px;
    right: 12px;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .mediatorek-mediation-state.is-active {
    color: #24705d;
    background: #ddf7ee;
  }

  .mediatorek-mediation-state.is-pending {
    color: #8a6420;
    background: #fff5d9;
  }

  .mediatorek-mediation-empty,
  .mediatorek-mediation-pending,
  .mediatorek-mediation-no-messages {
    margin: 14px 0 0;
    color: #748096;
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
  }

  .mediatorek-mediation-chat {
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(115, 132, 164, 0.17);
    border-radius: 18px;
    background: #fbfcff;
  }

  .mediatorek-mediation-chat > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 17px;
    border-bottom: 1px solid rgba(115, 132, 164, 0.14);
    background: #f5f8fe;
  }

  .mediatorek-mediation-chat > header span,
  .mediatorek-mediation-chat > header p {
    margin: 0;
    color: #758199;
    font-size: 11px;
  }

  .mediatorek-mediation-chat h4 {
    margin: 3px 0 0;
    color: #263552;
    font-size: 16px;
  }

  .mediatorek-mediation-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 180px;
    max-height: 390px;
    padding: 18px;
    overflow-y: auto;
  }

  .mediatorek-mediation-message {
    display: grid;
    gap: 4px;
    max-width: min(76%, 590px);
  }

  .mediatorek-mediation-message.is-mine {
    align-self: end;
  }

  .mediatorek-mediation-message.is-other {
    align-self: start;
  }

  .mediatorek-mediation-message > span {
    color: #758199;
    font-size: 10px;
    font-weight: 750;
  }

  .mediatorek-mediation-message.is-mine > span {
    text-align: right;
  }

  .mediatorek-mediation-message > div {
    padding: 11px 13px;
    border-radius: 14px;
    color: #2f3d55;
    background: #eef2f8;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
  }

  .mediatorek-mediation-message.is-mine > div {
    color: #fff;
    background: #5268c8;
    border-bottom-right-radius: 4px;
  }

  .mediatorek-mediation-message.is-other > div {
    border-bottom-left-radius: 4px;
  }

  .mediatorek-mediation-composer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid rgba(115, 132, 164, 0.14);
    background: #fff;
  }

  .mediatorek-mediation-composer textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    box-sizing: border-box;
    resize: vertical;
    border: 1px solid rgba(115, 132, 164, 0.28);
    border-radius: 13px;
    color: #263552;
    background: #fbfcff;
    font: 500 14px/1.5 Inter, "Segoe UI", sans-serif;
  }

  .mediatorek-mediation-composer .mediatorek-send-btn {
    width: auto;
    align-self: end;
    padding-inline: 18px;
  }

  @media (max-width: 720px) {
    .mediatorek-mediation-list {
      grid-template-columns: 1fr;
    }

    .mediatorek-mediation-chat > header,
    .mediatorek-mediation-heading {
      align-items: flex-start;
      flex-direction: column;
      gap: 7px;
    }

    .mediatorek-mediation-message {
      max-width: 90%;
    }

    .mediatorek-mediation-composer {
      grid-template-columns: 1fr;
    }

    .mediatorek-mediation-composer .mediatorek-send-btn {
      width: 100%;
    }
  }

  .mediatorek-auth-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 620px;
    margin: 18px auto 0;
    color: #6b778d;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }

  .mediatorek-auth-security strong {
    color: #347c69;
    white-space: nowrap;
  }

  .mediatorek-articles-home,
  .mediatorek-article-main {
    color: #1f2a37;
    font-family: Inter, "Segoe UI", sans-serif;
  }

  .mediatorek-articles-home {
    width: min(1180px, calc(100% - 40px));
    margin: 30px auto 0;
    padding: 34px;
    box-sizing: border-box;
    border: 1px solid rgba(115, 132, 164, 0.16);
    border-radius: 28px;
    background:
      radial-gradient(circle at 92% 0%, rgba(82, 194, 157, 0.12), transparent 24rem),
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
    box-shadow: 0 18px 44px rgba(44, 62, 100, 0.09);
  }

  .mediatorek-articles-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
  }

  .mediatorek-articles-heading h2,
  .mediatorek-article-hub-hero h1 {
    margin: 4px 0 8px;
    color: #202b3d;
    font-size: clamp(29px, 4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .mediatorek-articles-heading p:not(.mediatorek-section-eyebrow),
  .mediatorek-article-hub-lead {
    max-width: 720px;
    margin: 0;
    color: #5d6b82;
    font-size: 16px;
    line-height: 1.65;
  }

  .mediatorek-section-eyebrow {
    margin: 0;
    color: #3e997b;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .mediatorek-articles-all,
  .mediatorek-article-card-link {
    color: #4666da;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .mediatorek-articles-all {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid rgba(93, 124, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
  }

  .mediatorek-articles-all:hover,
  .mediatorek-articles-all:focus-visible,
  .mediatorek-article-card-link:hover,
  .mediatorek-article-card-link:focus-visible {
    color: #304fc4;
    outline: none;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .mediatorek-article-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .mediatorek-article-card {
    position: relative;
    display: flex;
    grid-column: span 2;
    flex-direction: column;
    min-width: 0;
    min-height: 250px;
    padding: 22px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(115, 132, 164, 0.17);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(44, 62, 100, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .mediatorek-article-card:nth-child(4),
  .mediatorek-article-card:nth-child(5) {
    grid-column: span 3;
  }

  .mediatorek-article-card:hover {
    border-color: rgba(93, 124, 255, 0.3);
    box-shadow: 0 16px 34px rgba(44, 62, 100, 0.1);
    transform: translateY(-3px);
  }

  .mediatorek-article-card-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #738096;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
  }

  .mediatorek-article-card h3 {
    position: relative;
    z-index: 1;
    margin: 24px 0 10px;
    font-size: 21px;
    line-height: 1.22;
    letter-spacing: -0.025em;
  }

  .mediatorek-article-card h3 a {
    color: #27344d;
    text-decoration: none;
  }

  .mediatorek-article-card h3 a::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
  }

  .mediatorek-article-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: #647187;
    font-size: 14px;
    line-height: 1.6;
  }

  .mediatorek-article-card-link {
    position: relative;
    z-index: 3;
    margin-top: auto;
    align-self: flex-start;
  }

  .mediatorek-article-card-number {
    position: absolute;
    right: 12px;
    bottom: -22px;
    color: rgba(93, 124, 255, 0.065);
    font-size: 92px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
    pointer-events: none;
  }

  .mediatorek-article-main {
    width: min(1180px, calc(100% - 40px));
    margin: 20px auto 0;
  }

  .mediatorek-article-hub-hero {
    padding: 48px clamp(24px, 6vw, 72px);
    border: 1px solid rgba(115, 132, 164, 0.16);
    border-radius: 28px;
    background:
      radial-gradient(circle at 86% 20%, rgba(82, 194, 157, 0.18), transparent 20rem),
      radial-gradient(circle at 10% 0%, rgba(93, 124, 255, 0.14), transparent 22rem),
      rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(44, 62, 100, 0.08);
  }

  .mediatorek-article-hub-hero h1 {
    max-width: 780px;
    margin-top: 14px;
    font-size: clamp(40px, 6vw, 68px);
  }

  .mediatorek-article-library,
  .mediatorek-related-articles {
    padding: 34px 0;
  }

  .mediatorek-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: #7b879a;
    font-size: 12px;
    font-weight: 700;
  }

  .mediatorek-breadcrumbs a {
    color: #526fd4;
    text-decoration: none;
  }

  .mediatorek-breadcrumbs a:hover,
  .mediatorek-breadcrumbs a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .mediatorek-breadcrumbs-article {
    max-width: 900px;
    margin: 0 auto 14px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .mediatorek-breadcrumbs-article span:last-child {
    max-width: min(560px, 70vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mediatorek-article-page {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(115, 132, 164, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 50px rgba(44, 62, 100, 0.1);
  }

  .mediatorek-article-page-header {
    padding: clamp(30px, 6vw, 66px) clamp(24px, 7vw, 74px) 40px;
    background:
      radial-gradient(circle at 90% 5%, rgba(82, 194, 157, 0.14), transparent 20rem),
      linear-gradient(145deg, #fbfdff, #f5f8ff);
  }

  .mediatorek-article-page-header h1 {
    max-width: 760px;
    margin: 14px 0 20px;
    color: #202b3d;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.03;
    letter-spacing: -0.052em;
  }

  .mediatorek-article-lead {
    max-width: 730px;
    margin: 0;
    color: #536178;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
  }

  .mediatorek-article-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 28px;
    color: #738096;
    font-size: 12px;
    font-weight: 700;
  }

  .mediatorek-article-byline span:first-child {
    color: #3c506e;
    font-weight: 850;
  }

  .mediatorek-article-content {
    padding: 18px clamp(24px, 7vw, 74px) 34px;
  }

  .mediatorek-article-content section {
    padding-top: 34px;
  }

  .mediatorek-article-content h2 {
    margin: 0 0 16px;
    color: #26344c;
    font-size: clamp(25px, 3.2vw, 34px);
    line-height: 1.18;
    letter-spacing: -0.035em;
  }

  .mediatorek-article-content p,
  .mediatorek-article-content li {
    color: #4f5e75;
    font-size: 17px;
    line-height: 1.82;
  }

  .mediatorek-article-content p {
    margin: 0 0 18px;
  }

  .mediatorek-privacy-main {
    padding-bottom: 34px;
  }

  .mediatorek-privacy-page .mediatorek-article-content {
    padding-bottom: 52px;
  }

  .mediatorek-privacy-page .mediatorek-article-content section + section {
    border-top: 1px solid rgba(115, 132, 164, 0.12);
  }

  .mediatorek-article-content ul {
    margin: 10px 0 22px;
    padding: 18px 24px 18px 44px;
    border: 1px solid rgba(82, 194, 157, 0.19);
    border-radius: 16px;
    background: rgba(82, 194, 157, 0.055);
  }

  .mediatorek-article-content li + li {
    margin-top: 8px;
  }

  .mediatorek-article-disclaimer {
    margin: 0 clamp(24px, 7vw, 74px) 30px;
    padding: 16px 18px;
    border-left: 4px solid #f2b84b;
    border-radius: 0 12px 12px 0;
    color: #6f6044;
    background: rgba(255, 244, 210, 0.58);
    font-size: 13px;
    line-height: 1.6;
  }

  .mediatorek-article-sources {
    padding: 30px clamp(24px, 7vw, 74px) 42px;
    border-top: 1px solid rgba(115, 132, 164, 0.14);
    background: #f8faff;
  }

  .mediatorek-article-sources h2 {
    margin: 0 0 14px;
    color: #33425c;
    font-size: 18px;
  }

  .mediatorek-article-sources ol {
    margin: 0;
    padding-left: 22px;
  }

  .mediatorek-article-sources li {
    color: #738096;
    font-size: 13px;
    line-height: 1.65;
  }

  .mediatorek-article-sources li + li {
    margin-top: 7px;
  }

  .mediatorek-article-sources a {
    color: #4965c7;
    overflow-wrap: anywhere;
  }

  .standalone-footer {
    padding: 32px 20px 40px;
    color: #667085;
    font: 600 13px/1.5 Inter, "Segoe UI", sans-serif;
    text-align: center;
  }

  @media (max-width: 900px) {
    .mediatorek-chat-shell {
      grid-template-columns: 1fr;
    }

    .mediatorek-chat-sidebar {
      padding: 18px;
      border-right: 0;
      border-bottom: 1px solid rgba(115, 132, 164, 0.13);
    }

    .mediatorek-chat-intro {
      margin-bottom: 12px;
    }

    .mediatorek-chat-thread-list {
      display: flex;
      max-height: none;
      overflow-x: auto;
      padding: 0 0 4px;
    }

    .mediatorek-chat-thread {
      flex: 0 0 220px;
    }

    .mediatorek-chat-conversation,
    .mediatorek-chat-shell {
      min-height: 620px;
    }
  }

  @media (max-width: 680px) {
    .mediatorek-chat-shell {
      border-radius: 20px;
    }

    .mediatorek-chat-sidebar-head {
      align-items: center;
    }

    .mediatorek-chat-sidebar h2 {
      font-size: 20px;
    }

    .mediatorek-chat-conversation-head {
      align-items: flex-start;
      padding: 15px 16px;
    }

    .mediatorek-chat-context {
      max-width: 110px;
      text-align: center;
    }

    .mediatorek-chat-messages {
      max-height: 460px;
      padding: 17px 14px;
    }

    .mediatorek-chat-message {
      max-width: 90%;
    }

    .mediatorek-chat-settings {
      grid-template-columns: 1fr;
    }

    .mediatorek-chat-composer {
      padding: 14px;
    }

    .mediatorek-chat-composer-foot {
      align-items: stretch;
      flex-direction: column;
    }

    .mediatorek-chat-composer .mediatorek-send-btn {
      width: 100%;
    }

    .standalone-header {
      position: static;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      width: calc(100% - 24px);
      gap: 10px;
      padding: 10px 10px 10px 14px;
      border-radius: 18px;
    }

    .standalone-brand {
      gap: 8px;
      font-size: 18px;
    }

    .standalone-brand::before {
      width: 9px;
      height: 9px;
      box-shadow: 0 0 0 4px rgba(93, 124, 255, 0.1);
    }

    .standalone-header-actions {
      display: contents;
    }

    .standalone-main-nav {
      grid-column: 1 / -1;
      grid-row: 2;
      justify-content: center;
      gap: 2px;
      padding-top: 8px;
      border-top: 1px solid rgba(115, 132, 164, 0.12);
    }

    .standalone-main-nav a {
      padding: 7px 8px;
      font-size: 13px;
    }

    .standalone-main-nav a:first-child {
      display: none;
    }

    .standalone-main-nav .standalone-mobile-login {
      display: inline-flex;
      align-items: center;
      color: #405fd1;
      background: rgba(93, 124, 255, 0.08);
    }

    .standalone-account-actions {
      grid-column: 2;
      grid-row: 1;
      align-self: center;
      gap: 6px;
    }

    .standalone-account-strip {
      grid-row: 2;
      padding-top: 7px;
    }

    .standalone-header.has-account-session .standalone-main-nav {
      grid-row: 3;
    }

    .standalone-account-strip-item {
      font-size: 11px;
    }

    .standalone-login {
      min-height: 36px;
      padding: 0 11px;
      font-size: 12px;
    }

    .standalone-language-links a {
      min-width: 24px;
      padding-inline: 5px;
    }

    .mediatorek-auth-main {
      width: calc(100% - 24px);
      margin-top: 34px;
    }

    .mediatorek-auth-intro {
      padding: 0 8px;
    }

    .mediatorek-auth-intro h1 {
      font-size: 38px;
    }

    .mediatorek-auth-card {
      min-height: 410px;
      padding: 20px 16px;
      border-radius: 22px;
    }

    .mediatorek-auth-actions {
      grid-template-columns: 1fr;
    }

    .mediatorek-auth-security {
      align-items: flex-start;
      flex-direction: column;
      gap: 3px;
      padding: 0 12px;
      text-align: left;
    }

    .mediatorek-articles-home,
    .mediatorek-article-main {
      width: calc(100% - 24px);
    }

    .mediatorek-articles-home {
      padding: 22px 14px;
      border-radius: 22px;
    }

    .mediatorek-articles-heading {
      align-items: flex-start;
      flex-direction: column;
      gap: 16px;
    }

    .mediatorek-articles-heading h2 {
      font-size: 31px;
    }

    .mediatorek-article-grid {
      grid-template-columns: 1fr;
    }

    .mediatorek-article-card,
    .mediatorek-article-card:nth-child(4),
    .mediatorek-article-card:nth-child(5) {
      grid-column: 1;
      min-height: 230px;
      padding: 20px;
    }

    .mediatorek-article-hub-hero {
      padding: 30px 20px;
      border-radius: 22px;
    }

    .mediatorek-article-hub-hero h1 {
      font-size: 42px;
    }

    .mediatorek-breadcrumbs-article {
      padding: 0 8px;
    }

    .mediatorek-article-page {
      border-radius: 22px;
    }

    .mediatorek-article-page-header h1 {
      font-size: 40px;
    }

    .mediatorek-article-content p,
    .mediatorek-article-content li {
      font-size: 16px;
      line-height: 1.75;
    }
  }

  @media (max-width: 480px) {
    .standalone-header {
      grid-template-columns: auto minmax(0, 1fr);
      column-gap: 8px;
    }

    .standalone-brand {
      font-size: 17px;
    }

    .standalone-account-actions {
      min-width: 0;
      justify-self: end;
      gap: 4px;
    }

    .standalone-language-links {
      padding: 2px;
    }

    .standalone-language-links a {
      min-width: 18px;
      padding: 6px 2px;
      font-size: 10px;
    }

    .standalone-login {
      min-height: 32px;
      padding-inline: 8px;
      font-size: 11px;
    }
  }

  @media (max-width: 350px) {
    .standalone-account-actions {
      grid-column: 1 / -1;
      grid-row: 2;
      width: 100%;
      justify-content: space-between;
    }

    .standalone-main-nav {
      grid-row: 3;
    }

    .standalone-account-strip {
      grid-row: 3;
    }

    .standalone-header.has-account-session .standalone-main-nav {
      grid-row: 4;
    }
  }


  @media (min-width: 681px) and (max-width: 940px) {
    .mediatorek-article-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mediatorek-article-card,
    .mediatorek-article-card:nth-child(4),
    .mediatorek-article-card:nth-child(5) {
      grid-column: span 1;
    }
  }

  .mediatorek-top-image {
    width: calc(100% + 36px);
    margin: -18px -18px 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .mediatorek-top-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .mediatorek-hero-wrap {
    --bg: #f4f7ff;
    --surface: #ffffff;
    --text: #1f2a37;
    --muted: #5b6678;
    --line: rgba(115, 132, 164, 0.2);
    --shadow: 0 20px 48px rgba(44, 62, 100, 0.12);
    max-width: 1180px;
    margin: 18px auto 0;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
    border: 1px solid rgba(115, 132, 164, 0.18);
    box-shadow: var(--shadow);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    overflow: hidden;
  }

  .mediatorek-hero-wrap .mediatorek-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 18px;
  }

  .mediatorek-hero-wrap .mediatorek-copy {
    padding: 34px;
    height: auto;
    min-width: 0;
    box-sizing: border-box;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(115, 132, 164, 0.16);
    backdrop-filter: blur(10px);
  }

  .mediatorek-hero-wrap .mediatorek-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px 8px 34px;
    border-radius: 999px;
    position: relative;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4f71f9;
    line-height: 1.1;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(115, 132, 164, 0.2);
  }

  .mediatorek-hero-wrap .mediatorek-badge::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5d7cff, #52c29d);
    box-shadow: 0 0 0 4px rgba(93, 124, 255, 0.12);
  }

  .mediatorek-hero-wrap h1 {
    margin: 0 0 18px !important;
    font-size: clamp(34px, 4.2vw, 58px) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.02em !important;
    color: var(--text) !important;
    font-weight: 800 !important;
  }

  .mediatorek-hero-wrap h1 span {
    display: block;
    margin-top: 8px;
    font-size: clamp(38px, 5.2vw, 64px);
    line-height: 1.14;
    padding-bottom: 0.08em;
    font-weight: 800;
    background: linear-gradient(90deg, #5d7cff 0%, #4f86da 52%, #44b39c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .mediatorek-hero-wrap .mediatorek-lead,
  .mediatorek-hero-wrap .mediatorek-desc {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
  }

  .mediatorek-hero-wrap .mediatorek-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 18px;
  }

  .mediatorek-benefits-title {
    margin: 24px 0 14px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--text);
    font-weight: 800;
    text-align: center;
  }

  .mediatorek-hero-wrap .mediatorek-btn {
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
  }

  .mediatorek-hero-wrap .mediatorek-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #5d7cff, #52c29d);
    box-shadow: 0 10px 24px rgba(68, 110, 220, 0.26);
  }

  .mediatorek-hero-wrap .mediatorek-btn-secondary {
    color: #2e4166;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(115, 132, 164, 0.28);
  }
  .mediatorek-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mediatorek-points li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
  }

  .mediatorek-visual {
    position: relative;
    min-height: auto;
    height: auto;
    min-width: 0;
    box-sizing: border-box;
    order: 2;
    display: block;
    padding: 24px;
  }

  .mediatorek-stacks {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 10px;
    box-sizing: border-box;
  }

  .mediatorek-stack {
    display: flex;
    flex-direction: column;
  }

  .mediatorek-stack-b {
    margin-top: 0;
  }

  @media (min-width: 981px) {
    .mediatorek-visual {
      padding: 18px;
    }

    .mediatorek-stacks {
      gap: 14px;
      padding: 22px 12px;
      box-sizing: border-box;
    }

    .mediatorek-stack-b {
      margin-top: 44px;
    }
  }

  .mediatorek-glass {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
  }

  .mediatorek-card {
    --card-rotation: 0deg;
    position: relative;
    left: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 24px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(46, 65, 102, 0.14);
    transform: rotate(var(--card-rotation));
    transform-origin: center;
    z-index: 1;
    transition: transform .28s ease, box-shadow .28s ease;
  }

  .mediatorek-card:hover {
    transform: translateY(-4px) rotate(var(--card-rotation));
    box-shadow: 0 24px 46px rgba(46, 65, 102, 0.18);
  }

  .mediatorek-card-top {
    margin-bottom: -12px;
  }

  .mediatorek-card-bottom {
    margin-top: -4px;
  }

  .mediatorek-check-wrap {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 20px 24px;
    scroll-margin-top: 165px;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  }

  .mediatorek-chat-shell {
    display: grid;
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
    min-height: 650px;
    overflow: hidden;
    border: 1px solid rgba(115, 132, 164, 0.16);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 52px rgba(44, 62, 100, 0.11);
  }

  .mediatorek-chat-shell[hidden] {
    display: none;
  }

  .mediatorek-chat-sidebar {
    min-width: 0;
    padding: 24px 18px;
    border-right: 1px solid rgba(115, 132, 164, 0.13);
    background: linear-gradient(180deg, rgba(244, 247, 255, 0.96), rgba(250, 252, 255, 0.92));
  }

  .mediatorek-chat-sidebar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .mediatorek-chat-kicker {
    display: block;
    margin-bottom: 5px;
    color: #4a69d5;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mediatorek-chat-sidebar h2 {
    margin: 0;
    color: #22304a;
    font-size: 23px;
    line-height: 1.15;
  }

  .mediatorek-chat-new {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid rgba(93, 124, 255, 0.22);
    border-radius: 10px;
    color: #405fd1;
    background: #fff;
    font: 800 12px/1.2 inherit;
    cursor: pointer;
  }

  .mediatorek-chat-new:hover,
  .mediatorek-chat-new:focus-visible {
    background: rgba(93, 124, 255, 0.08);
    outline: none;
  }

  .mediatorek-chat-intro {
    margin: 14px 0 18px;
    color: #68758a;
    font-size: 13px;
    line-height: 1.55;
  }

  .mediatorek-chat-thread-list {
    display: grid;
    gap: 7px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 3px;
  }

  .mediatorek-chat-thread {
    width: 100%;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #46556e;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
  }

  .mediatorek-chat-thread strong,
  .mediatorek-chat-thread span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mediatorek-chat-thread strong {
    color: #2c3b55;
    font-size: 13px;
    line-height: 1.35;
  }

  .mediatorek-chat-thread span {
    margin-top: 4px;
    color: #8490a4;
    font-size: 11px;
  }

  .mediatorek-chat-thread:hover,
  .mediatorek-chat-thread:focus-visible {
    border-color: rgba(93, 124, 255, 0.16);
    background: rgba(255, 255, 255, 0.82);
    outline: none;
  }

  .mediatorek-chat-thread.is-active {
    border-color: rgba(93, 124, 255, 0.22);
    background: #fff;
    box-shadow: 0 7px 18px rgba(63, 84, 130, 0.08);
  }

  .mediatorek-chat-thread-empty {
    margin: 18px 4px 0;
    color: #8490a4;
    font-size: 12px;
    line-height: 1.5;
  }

  .mediatorek-chat-conversation {
    display: grid;
    grid-template-rows: auto minmax(320px, 1fr) auto;
    min-width: 0;
    min-height: 650px;
  }

  .mediatorek-chat-conversation-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(115, 132, 164, 0.12);
  }

  .mediatorek-chat-conversation-head span {
    color: #8290a5;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mediatorek-chat-conversation-head h3 {
    max-width: 620px;
    margin: 3px 0 0;
    overflow: hidden;
    color: #273650;
    font-size: 18px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mediatorek-chat-context {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 9px;
    color: #277461 !important;
    background: rgba(82, 194, 157, 0.1);
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .mediatorek-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    max-height: 560px;
    overflow-y: auto;
    padding: 24px;
    background: linear-gradient(180deg, #fbfcff, #f6f9ff);
  }

  .mediatorek-chat-empty-state {
    display: grid;
    place-items: center;
    align-content: center;
    flex: 1 1 auto;
    min-height: 260px;
    color: #7a879b;
    text-align: center;
  }

  .mediatorek-chat-empty-state[hidden] {
    display: none;
  }

  .mediatorek-chat-empty-state strong {
    color: #34435d;
    font-size: 18px;
  }

  .mediatorek-chat-empty-state span {
    max-width: 470px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
  }

  .mediatorek-chat-message {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    max-width: min(78%, 680px);
  }

  .mediatorek-chat-message.is-user {
    align-self: flex-end;
    align-items: flex-end;
  }

  .mediatorek-chat-message-label {
    margin: 0 7px 5px;
    color: #8390a4;
    font-size: 11px;
    font-weight: 800;
  }

  .mediatorek-chat-bubble {
    padding: 12px 15px;
    border: 1px solid rgba(115, 132, 164, 0.14);
    border-radius: 16px 16px 16px 5px;
    color: #35445d;
    background: #fff;
    box-shadow: 0 7px 18px rgba(44, 62, 100, 0.06);
    font-size: 14px;
    line-height: 1.65;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  .mediatorek-chat-message.is-user .mediatorek-chat-bubble {
    border-color: transparent;
    border-radius: 16px 16px 5px 16px;
    color: #fff;
    background: linear-gradient(135deg, #5d7cff, #5872e8);
  }

  .mediatorek-chat-message.has-error .mediatorek-chat-bubble {
    border-color: rgba(196, 68, 84, 0.34);
    box-shadow: 0 0 0 3px rgba(196, 68, 84, 0.08);
  }

  .mediatorek-chat-composer {
    padding: 16px 20px 18px;
    border-top: 1px solid rgba(115, 132, 164, 0.12);
    background: #fff;
  }

  .mediatorek-chat-settings {
    display: grid;
    grid-template-columns: minmax(160px, 0.7fr) minmax(240px, 1.3fr);
    gap: 10px;
    margin-bottom: 11px;
  }

  .mediatorek-chat-settings label,
  .mediatorek-chat-message-label {
    color: #56647a;
    font-size: 11px;
    font-weight: 800;
  }

  .mediatorek-chat-settings input,
  .mediatorek-chat-settings select,
  .mediatorek-chat-composer textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(115, 132, 164, 0.24);
    border-radius: 11px;
    color: #2f3d55;
    background: #fbfcff;
    font: 13px/1.45 inherit;
    outline: none;
  }

  .mediatorek-chat-settings input,
  .mediatorek-chat-settings select {
    display: block;
    height: 39px;
    margin-top: 5px;
    padding: 0 10px;
  }

  .mediatorek-chat-composer textarea {
    display: block;
    min-height: 78px;
    margin-top: 6px;
    padding: 11px 12px;
    resize: vertical;
  }

  .mediatorek-chat-settings input:focus,
  .mediatorek-chat-settings select:focus,
  .mediatorek-chat-composer textarea:focus {
    border-color: rgba(93, 124, 255, 0.56);
    box-shadow: 0 0 0 3px rgba(93, 124, 255, 0.1);
  }

  .mediatorek-chat-composer-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 10px;
  }

  .mediatorek-chat-composer .mediatorek-send-btn {
    flex: 0 0 auto;
    min-width: 120px;
    margin-top: 0;
  }

  .mediatorek-chat-status {
    margin: 0;
    color: #77859a;
    font-size: 12px;
    line-height: 1.4;
  }

  .mediatorek-chat-status.is-error {
    color: #a53a4b;
  }

  .mediatorek-check-card {
    background: #ffffff;
    border: 1px solid rgba(115, 132, 164, 0.14);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(44, 62, 100, 0.08);
  }

  .mediatorek-check-card h2 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.1;
    color: #1f2a37;
  }

  .mediatorek-check-intro {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #5b6678;
  }

  .mediatorek-check-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

  .mediatorek-check-field:last-child {
    margin-bottom: 0;
  }

  .mediatorek-check-field label {
    font-size: 14px;
    font-weight: 700;
    color: #2b3950;
  }

  .mediatorek-check-field input,
  .mediatorek-check-field select,
  .mediatorek-check-field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(115, 132, 164, 0.28);
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.5;
    color: #1f2a37;
    box-sizing: border-box;
    font-family: inherit;
  }

  .mediatorek-check-field-select select {
    width: fit-content !important;
    min-width: 420px;
    max-width: 100%;
    display: inline-block;
    appearance: auto;
    background: #fff;
    border-radius: 10px;
  }

  .mediatorek-send-btn {
    margin-top: 10px;
    width: fit-content;
    border: 0;
    border-radius: 12px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: #5d7cff;
    box-shadow: 0 10px 24px rgba(93, 124, 255, 0.28);
    cursor: pointer;
  }

  .mediatorek-send-btn:hover {
    filter: brightness(1.03);
  }

  #wiadomosc-oryginalna {
    background: rgba(255, 110, 110, 0.14);
  }

  #odpowiedz {
    background: rgba(100, 214, 143, 0.16);
  }

  #odpowiedz[readonly] {
    cursor: not-allowed;
    opacity: 0.96;
  }

  .mediatorek-aggression-notice {
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #ef4444;
    border-radius: 10px;
    background: #fff1f2;
    color: #7f1d1d;
  }

  .mediatorek-aggression-notice strong {
    display: block;
    margin-bottom: 8px;
    color: #991b1b;
  }

  .mediatorek-aggression-notice .notice-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .mediatorek-aggression-notice button {
    border: 1px solid #b91c1c;
    border-radius: 8px;
    padding: 7px 10px;
    background: #fff;
    color: #7f1d1d;
    font-weight: 600;
    cursor: pointer;
  }

  .mediatorek-aggr-emoji {
    margin: 4px 0 10px;
  }

  .mediatorek-aggr-emoji-label {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 8px;
  }

  .mediatorek-aggr-emoji-scale {
    --inactive-face: #8b8b8b;
    --inactive-shadow: rgba(0, 0, 0, 0.22);
    --line: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .mediatorek-aggr-emoji-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    position: relative;
    background: var(--inactive-face);
    filter: grayscale(1) saturate(0.15);
    opacity: 0.42;
    box-shadow:
      inset -6px -8px 14px rgba(0, 0, 0, 0.2),
      inset 6px 8px 12px rgba(255, 255, 255, 0.1),
      0 6px 14px var(--inactive-shadow);
    transition: filter .22s ease, opacity .22s ease, transform .22s ease, background .22s ease, box-shadow .22s ease;
  }

  .mediatorek-aggr-emoji-item::before {
    content: "";
    position: absolute;
    inset: 7px 11px auto 11px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    filter: blur(3px);
    pointer-events: none;
  }

  .mediatorek-aggr-emoji-item .eye {
    position: absolute;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1f1f1f;
    z-index: 2;
  }

  .mediatorek-aggr-emoji-item .eye.left { left: 16px; }
  .mediatorek-aggr-emoji-item .eye.right { right: 16px; }

  .mediatorek-aggr-emoji-item .mouth {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .mediatorek-aggr-emoji-item.happy .mouth {
    bottom: 14px;
    width: 24px;
    height: 12px;
    border-bottom: 3px solid var(--line);
    border-radius: 0 0 24px 24px;
  }

  .mediatorek-aggr-emoji-item.flat .mouth {
    bottom: 17px;
    width: 18px;
    height: 0;
    border-top: 3px solid var(--line);
    border-radius: 6px;
  }

  .mediatorek-aggr-emoji-item.slight-sad .mouth {
    bottom: 14px;
    width: 18px;
    height: 8px;
    border-top: 3px solid var(--line);
    border-radius: 18px 18px 0 0;
  }

  .mediatorek-aggr-emoji-item.sad .mouth {
    bottom: 12px;
    width: 22px;
    height: 10px;
    border-top: 3px solid var(--line);
    border-radius: 22px 22px 0 0;
  }

  .mediatorek-aggr-emoji-item.cry .mouth {
    bottom: 11px;
    width: 20px;
    height: 12px;
    background: #262626;
    border-radius: 50% 50% 42% 42%;
    overflow: hidden;
  }

  .mediatorek-aggr-emoji-item.cry .mouth::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 5px;
    background: #cf5f5f;
    border-radius: 10px 10px 0 0;
    opacity: 0.9;
  }

  .mediatorek-aggr-emoji-item .tear {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #d9f2ff 0%, #73c8ff 55%, #2691ff 100%);
    border-radius: 0 75% 75% 75%;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.55), 0 1px 2px rgba(0,0,0,0.18);
    z-index: 2;
    opacity: .98;
  }

  .mediatorek-aggr-emoji-item .tear.left {
    left: 12px;
    top: 27px;
    transform: rotate(45deg);
  }
  .mediatorek-aggr-emoji-item .tear.right {
    right: 12px;
    top: 27px;
    transform: rotate(45deg);
  }

  .mediatorek-aggr-emoji-item .level-text {
    position: absolute;
    right: -2px;
    bottom: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #2f2f2f;
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  .mediatorek-aggr-emoji-item.active {
    filter: grayscale(0) saturate(1.05);
    opacity: 1;
    transform: scale(1.04);
    box-shadow:
      inset -8px -10px 18px rgba(0, 0, 0, 0.2),
      inset 8px 10px 16px rgba(255, 255, 255, 0.16),
      0 10px 16px rgba(0, 0, 0, 0.28);
  }

  .mediatorek-aggr-emoji-item.level-0.active {
    background: linear-gradient(135deg, #4dcb4b 0%, #2b8f2f 100%);
  }
  .mediatorek-aggr-emoji-item.level-1.active {
    background: linear-gradient(135deg, #d7d74a 0%, #bca52b 100%);
  }
  .mediatorek-aggr-emoji-item.level-2.active {
    background: linear-gradient(135deg, #ffd84b 0%, #f4b41b 100%);
  }
  .mediatorek-aggr-emoji-item.level-3.active {
    background: linear-gradient(135deg, #ffb13b 0%, #ff7a16 100%);
  }
  .mediatorek-aggr-emoji-item.level-4.active {
    background: linear-gradient(135deg, #ff6548 0%, #ff2d25 100%);
  }

  @media (max-width: 680px) {
    .mediatorek-check-wrap {
      scroll-margin-top: 20px;
    }

    .mediatorek-check-card {
      padding: 20px;
    }

    .mediatorek-check-card h2 {
      font-size: 25px;
    }

    .mediatorek-check-field-select select {
      min-width: 0;
      width: 100%;
    }

    .mediatorek-send-btn {
      width: 100%;
    }
  }

  .mediatorek-card-top-second {
    display: none;
  }

  .mediatorek-card-bottom-second {
    display: none;
  }

  .mediatorek-card-emoji {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 3;
    font-size: 24px;
    line-height: 1;
  }

  .mediatorek-stack-a .mediatorek-card-top { --card-rotation: -3deg; }
  .mediatorek-stack-a .mediatorek-card-bottom { --card-rotation: 2deg; }
  .mediatorek-stack-b .mediatorek-card-top { --card-rotation: 2.5deg; }
  .mediatorek-stack-b .mediatorek-card-bottom { --card-rotation: -2.5deg; }

  .mediatorek-page {
    --bg: #f6f8fc;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #667085;
    --line: #e6ebf2;
    --accent: #4f46e5;
    --accent-2: #0ea5a4;
    --accent-soft: #eef2ff;
    --shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
    --radius: 24px;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
    padding: 32px 16px 64px;
    margin-top: 24px;
  }

  .mediatorek-page .mediatorek-container {
    max-width: 1180px;
    margin: 0 auto;
  }

  .mediatorek-page .mediatorek-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 18px;
  }

  .mediatorek-page .mediatorek-section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
  }

  .mediatorek-page .mediatorek-section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
  }

  .mediatorek-page .mediatorek-pricing-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
  }

  .mediatorek-page .mediatorek-pricing-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
    padding: 28px;
    display: flex;
    flex-direction: column;
  }

  .mediatorek-page .mediatorek-plan-desc {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
  }

  .mediatorek-page .mediatorek-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .mediatorek-page .mediatorek-pricing-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
  }

  .mediatorek-page .mediatorek-plan-price {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--accent);
  }

  .mediatorek-page .mediatorek-plan-price small {
    font-size: 16px;
    color: var(--muted);
    font-weight: 600;
  }

  .mediatorek-page .mediatorek-pricing-card ul {
    margin: 0 0 18px 18px;
    padding: 0;
    color: var(--text);
    line-height: 1.75;
  }

  .mediatorek-page .mediatorek-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    margin-top: auto;
    align-self: center;
  }

  .mediatorek-page .mediatorek-btn-primary {
    background: linear-gradient(135deg, var(--accent), #6d5efc);
    color: #fff;
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.26);
  }

  @media (max-width: 760px) {
    .mediatorek-page {
      padding: 24px 14px 40px;
    }

    .mediatorek-page .mediatorek-pricing-card {
      padding: 20px;
      border-radius: 18px;
    }

    .mediatorek-page .mediatorek-pricing-row {
      grid-template-columns: 1fr;
    }

    .mediatorek-page .mediatorek-btn {
      width: 100%;
    }
  }

  .mediatorek-card-label {
    display: inline-block;
    max-width: calc(100% - 44px);
    box-sizing: border-box;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .mediatorek-card-label.bad {
    color: #b94b5e;
    background: rgba(219, 86, 107, 0.10);
  }

  .mediatorek-card-label.good {
    color: #238164;
    background: rgba(53, 178, 138, 0.12);
  }

  .mediatorek-bubble {
    padding: 16px 18px;
    box-sizing: border-box;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.7;
  }

  .mediatorek-bubble.bad {
    color: #6f2230;
    background: linear-gradient(135deg, rgba(255, 236, 240, 0.96), rgba(255, 247, 248, 0.96));
    border: 1px solid rgba(219, 86, 107, 0.16);
  }

  .mediatorek-bubble.good {
    color: #1d4b42;
    background: linear-gradient(135deg, rgba(235, 251, 245, 0.96), rgba(245, 255, 250, 0.96));
    border: 1px solid rgba(53, 178, 138, 0.16);
  }

  .mediatorek-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 164px;
    height: 164px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(93, 124, 255, 0.95), rgba(82, 194, 157, 0.95));
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    box-shadow: 0 18px 40px rgba(62, 92, 163, 0.24);
  }

  .mediatorek-center-badge small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
  }

  .mediatorek-lines span {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(93, 124, 255, 0.08), rgba(82, 194, 157, 0.10));
  }

  .mediatorek-lines span:nth-child(1) {
    width: 120px;
    height: 10px;
    top: 140px;
    left: 68px;
    transform: rotate(-18deg);
  }

  .mediatorek-lines span:nth-child(2) {
    width: 140px;
    height: 10px;
    bottom: 146px;
    right: 56px;
    transform: rotate(-16deg);
  }

  .mediatorek-lines {
    display: none;
  }

  .mediatorek-note {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.7;
    color: #758195;
  }

  @media (max-width: 980px) {
    .mediatorek-hero-wrap .mediatorek-hero {
      grid-template-columns: 1fr;
    }

    .mediatorek-visual {
      padding: 14px;
    }

    .mediatorek-stacks {
      gap: 12px;
    }
  }

  @media (max-width: 680px) {
    .mediatorek-top-image {
      width: 100%;
      margin: 0;
      border-radius: 0;
    }

    .mediatorek-hero-wrap .mediatorek-hero {
      gap: 0;
      margin-top: 0;
    }

    .mediatorek-hero-wrap {
      padding: 0;
      border-radius: 20px;
    }

    .mediatorek-hero-wrap .mediatorek-copy {
      padding: 14px 16px !important;
      margin: 0 !important;
      border-radius: 14px;
    }

    .mediatorek-hero-wrap .mediatorek-lead,
    .mediatorek-hero-wrap .mediatorek-desc {
      text-align: justify;
      text-justify: inter-word;
    }

    .mediatorek-points {
      grid-template-columns: 1fr;
    }

    .mediatorek-card {
      width: 100%;
      padding: 18px;
    }

    .mediatorek-stack .mediatorek-card-top {
      --card-rotation: -1.5deg;
      margin-bottom: -8px;
    }

    .mediatorek-stack .mediatorek-card-bottom {
      --card-rotation: 1.5deg;
      margin-bottom: 0;
    }

    .mediatorek-card-top-second {
      display: none;
    }

    .mediatorek-card-bottom-second {
      display: none;
    }

    .mediatorek-card-emoji {
      top: 10px;
      right: 12px;
      font-size: 18px;
    }

    .mediatorek-center-badge {
      width: 132px;
      height: 132px;
      font-size: 13px;
      padding: 16px;
    }

    .mediatorek-actions {
      flex-direction: column;
    }

    .mediatorek-btn {
      width: 100%;
    }

    #jak-to-dziala,
    #dla-kogo {
      max-width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    #jak-to-dziala > div {
      padding: 14px 16px !important;
      border-radius: 20px !important;
    }

    #jak-to-dziala div[style*="padding:22px"],
    #dla-kogo > div > div {
      padding: 14px 16px !important;
    }
  }

  .page-id-2 .entry-title,
  .page-id-2 .page-title {
    display: none !important;
  }

  .page-id-2 .site-content,
  .page-id-2 .content-area,
  .page-id-2 .site-main,
  .page-id-2 .entry-content,
  .page-id-2 .container,
  .page-id-2 .wrapper {
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-id-2 .widget-area,
  .page-id-2 .sidebar {
    display: none !important;
  }

  .mediatorek-plan-interest-btn {
    border: 0;
    cursor: pointer;
    font-family: inherit;
  }

  .mediatorek-modal[hidden] {
    display: none;
  }

  .mediatorek-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: Inter, "Segoe UI", sans-serif;
  }

  .mediatorek-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 35, 58, 0.62);
    backdrop-filter: blur(7px);
  }

  .mediatorek-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(540px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 34px;
    box-sizing: border-box;
    border: 1px solid rgba(115, 132, 164, 0.2);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(24, 35, 58, 0.3);
  }

  .mediatorek-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #53627a;
    background: #eef2f8;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
  }

  .mediatorek-modal-kicker {
    color: #4f71f9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mediatorek-modal-dialog h2 {
    margin: 8px 44px 8px 0;
    color: #1f2a37;
    font-size: 30px;
  }

  .mediatorek-modal-dialog > p {
    margin: 0 0 22px;
    color: #667085;
    line-height: 1.65;
  }

  .mediatorek-modal-field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
  }

  .mediatorek-modal-field label {
    color: #2b3950;
    font-size: 14px;
    font-weight: 750;
  }

  .mediatorek-modal-field small {
    color: #7b8798;
    font-weight: 500;
  }

  .mediatorek-modal-field input,
  .mediatorek-modal-field textarea {
    width: 100%;
    padding: 12px 14px;
    box-sizing: border-box;
    border: 1px solid rgba(115, 132, 164, 0.3);
    border-radius: 12px;
    color: #1f2a37;
    background: #fbfcff;
    font: inherit;
  }

  .mediatorek-modal-field input:focus,
  .mediatorek-modal-field textarea:focus {
    border-color: #5d7cff;
    outline: 3px solid rgba(93, 124, 255, 0.14);
  }

  .mediatorek-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .mediatorek-modal-status {
    min-height: 22px;
    margin: 14px 0 0 !important;
    color: #53627a;
    font-size: 14px;
  }

  .mediatorek-modal-status.is-success {
    color: #177257;
  }

  .mediatorek-modal-status.is-error {
    color: #b4233c;
  }

  @media (max-width: 680px) {
    .mediatorek-modal {
      padding: 12px;
    }

    .mediatorek-modal-dialog {
      padding: 26px 20px;
      border-radius: 20px;
    }
  }

  .mediatorek-seo-faq {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 20px 48px;
    box-sizing: border-box;
    font-family: Inter, "Segoe UI", sans-serif;
  }

  .mediatorek-seo-faq-inner {
    padding: 34px;
    border: 1px solid rgba(115, 132, 164, 0.16);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 40px rgba(44, 62, 100, 0.08);
  }

  .mediatorek-seo-faq h2 {
    margin: 0 0 8px;
    color: #1f2a37;
    font-size: clamp(28px, 4vw, 38px);
  }

  .mediatorek-seo-faq-intro {
    margin: 0 0 22px;
    color: #667085;
    line-height: 1.7;
  }

  .mediatorek-seo-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .mediatorek-seo-faq details {
    padding: 18px 20px;
    border: 1px solid #e6ebf2;
    border-radius: 16px;
    background: #fbfcff;
  }

  .mediatorek-seo-faq summary {
    color: #2b3950;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
  }

  .mediatorek-seo-faq details p {
    margin: 12px 0 0;
    color: #5b6678;
    line-height: 1.7;
  }

  .standalone-footer a {
    color: #4f71f9;
    text-decoration: none;
  }

  .mediatorek-cookie-notice {
    position: fixed;
    z-index: 1000;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    left: max(18px, env(safe-area-inset-left));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(920px, calc(100% - 36px));
    margin: 0 auto;
    padding: 20px 22px;
    box-sizing: border-box;
    border: 1px solid rgba(93, 124, 255, 0.22);
    border-radius: 20px;
    background: rgba(25, 35, 54, 0.97);
    box-shadow: 0 22px 60px rgba(20, 29, 48, 0.28);
    color: #f8faff;
    font-family: Inter, "Segoe UI", sans-serif;
  }

  .mediatorek-cookie-notice[hidden] {
    display: none;
  }

  .mediatorek-cookie-notice-copy {
    min-width: 0;
  }

  .mediatorek-cookie-notice strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 16px;
  }

  .mediatorek-cookie-notice p {
    margin: 0;
    color: #d8e0ee;
    font-size: 14px;
    line-height: 1.6;
  }

  .mediatorek-cookie-notice a {
    color: #aebfff;
    font-weight: 750;
    text-underline-offset: 3px;
  }

  .mediatorek-cookie-notice button {
    flex: 0 0 auto;
    min-width: 112px;
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    background: #6f88ff;
    color: #fff;
    font: 800 14px/1 Inter, "Segoe UI", sans-serif;
    cursor: pointer;
  }

  .mediatorek-cookie-notice button:hover,
  .mediatorek-cookie-notice button:focus-visible {
    background: #8298ff;
  }

  @media (max-width: 680px) {
    .mediatorek-cookie-notice {
      align-items: stretch;
      flex-direction: column;
      gap: 15px;
      padding: 18px;
    }

    .mediatorek-cookie-notice button {
      width: 100%;
    }

    .mediatorek-seo-faq {
      padding: 0 12px 32px;
    }

    .mediatorek-seo-faq-inner {
      padding: 22px 18px;
      border-radius: 20px;
    }

    .mediatorek-seo-faq-list {
      grid-template-columns: 1fr;
    }
  }
