:root {
  --rdn-blue: #03a9f4;
  --rdn-yellow: #fbc02d;
  --rdn-ice: #eaf6fb;
  --rdn-red: #ed5b55;
  --rdn-green: #4caf50;
  --rdn-wa: #25d366;
  --rdn-ink: #212529;
  --rdn-ink-dark: #1d2127;
  --rdn-muted: #64748b;
  --rdn-bg: #f2f7fc;
  --rdn-white: #fff;
  --rdn-radius: 18px;
  --rdn-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --rdn-container: 1440px;
  --rdn-gutter: 24px;
  --rdn-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --rdn-heading-font: "Lexend", var(--rdn-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--rdn-font);
  font-size: 14px;
  line-height: 24px;
  color: var(--rdn-ink);
  background: var(--rdn-bg);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.rdn-container {
  width: min(var(--rdn-container), calc(100% - 32px));
  margin-inline: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rdn-heading-font);
  font-weight: 700;
}

.rdn-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100000;
  transform: translateY(-150%);
  background: #111;
  color: #fff;
  padding: 10px 14px;
}

.rdn-skip-link:focus {
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  overflow: visible;
  clip: auto;
  color: #fff;
  background: #111;
  white-space: normal;
}

.rdn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.rdn-button--primary {
  background: var(--rdn-red);
  color: #fff;
}

.rdn-button--ghost {
  background: #fff;
  color: var(--rdn-ink);
}

.rdn-page,
.rdn-single,
.rdn-archive,
.rdn-loop,
.rdn-search,
.rdn-404 {
  padding-block: 56px;
}

.rdn-entry-content--full {
  width: 100%;
}
