:root {
  --bg: #eef4fb;
  --bg-soft: #f8fbff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --ink: #12315d;
  --muted: #5f6d86;
  --line: rgba(0, 51, 160, 0.12);
  --primary: #0033a0;
  --primary-deep: #002a82;
  --secondary: #00aec7;
  --secondary-deep: #008ea3;
  --accent: #e3e829;
  --accent-strong: #d4da1f;
  --bright: #2d6df6;
  --gray: #888b8d;
  --accent-soft: rgba(227, 232, 41, 0.2);
  --shadow: 0 24px 60px rgba(0, 51, 160, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(227, 232, 41, 0.2), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(0, 174, 199, 0.16), transparent 24%),
    radial-gradient(circle at 20% 85%, rgba(45, 109, 246, 0.12), transparent 22%),
    linear-gradient(180deg, #f9fcff 0%, #edf3f9 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 96px 0;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
}

.section-heading h2,
.faq__intro h2,
.footer__brand h2,
.hero h1,
.about__content h2,
.process__intro h2 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.section-heading h2,
.faq__intro h2,
.footer__brand h2,
.about__content h2,
.process__intro h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.section-heading p,
.faq__intro p,
.footer__brand p,
.about__content p,
.hero__lead {
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
}

.topbar {
  position: relative;
  z-index: 20;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.topbar__inner,
.topbar__links {
  display: flex;
  align-items: center;
}

.topbar__inner {
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
}

.topbar__inner p {
  margin: 0;
}

.topbar__links {
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  background: rgba(248, 251, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 51, 160, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--primary), var(--bright));
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.brand__logo {
  width: 84px;
  height: 52px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand__logo img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-size: 1rem;
}

.brand__text small {
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a:not(.button) {
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(227, 232, 41, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button--sm {
  min-height: 48px;
  padding: 0 22px;
}

.button--ghost {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 32px;
  padding-bottom: 72px;
}

.hero__grid,
.about__grid,
.faq__grid,
.footer__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero__line {
  display: block;
  width: 100%;
  max-width: 460px;
  height: 16px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bright), #1dc7df);
}

.hero__kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.9rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  color: #10244d;
}

.hero h1 span {
  color: var(--bright);
}

.hero__lead {
  max-width: 540px;
  margin-top: 28px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero__visual {
  position: relative;
  min-height: 720px;
}

.hero-media {
  position: relative;
  min-height: 720px;
  border-radius: 0 0 0 48px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media__image,
.hero-media__fade {
  position: absolute;
  inset: 0;
}

.hero-media__image {
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.7) 0%, rgba(248, 251, 255, 0.34) 35%, rgba(248, 251, 255, 0.02) 62%),
    url("https://pixydrops.com/insur-html/main-html/assets/images/backgrounds/main-slider-1-1.jpg") center right / cover no-repeat;
}

.hero-media__fade {
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.86) 0%, rgba(248, 251, 255, 0.58) 28%, rgba(248, 251, 255, 0.15) 56%, rgba(248, 251, 255, 0.02) 100%);
}

.hero-media__dots {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bright);
  background: rgba(255, 255, 255, 0.35);
}

.hero-media__dots::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(45, 109, 246, 0.18);
}

.hero-media__dots--top {
  top: 42px;
  left: 8%;
}

.hero-media__dots--bottom {
  right: 14%;
  bottom: 98px;
  border-color: #4ed0df;
}

.hero-media__actions {
  position: absolute;
  right: 22px;
  top: 50%;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.hero-media__actions button {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(78, 208, 223, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #4ed0df;
  font-size: 1.15rem;
  cursor: default;
}

.features {
  padding-top: 40px;
}

.feature-grid,
.plans__grid,
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.plan-card,
.testimonial-card,
.faq__items details {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 28px;
  border-radius: 26px;
}

.feature-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--accent-soft), rgba(0, 174, 199, 0.12));
  color: var(--primary);
  font-size: 1.25rem;
}

.feature-card h3,
.plan-card h3,
.process__steps h3,
.footer__cols h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.feature-card p,
.plan-card li,
.process__steps p,
.testimonial-card span,
.footer__cols p,
.footer__cols a,
.faq__items p {
  color: var(--muted);
  line-height: 1.7;
}

.about__frame {
  position: relative;
  min-height: 680px;
  padding: 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(227, 232, 41, 0.24), transparent 30%),
    radial-gradient(circle at bottom right, rgba(45, 109, 246, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #edf5fb 100%);
  box-shadow: var(--shadow);
}

.about__photo {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 51, 160, 0.16);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__photo--main {
  top: 32px;
  right: 34px;
  width: 280px;
  height: 380px;
}

.about__photo--secondary {
  left: 42px;
  bottom: 38px;
  width: 220px;
  height: 160px;
  border: 6px solid rgba(255, 255, 255, 0.92);
}

.about__card {
  position: absolute;
  max-width: 280px;
  padding: 24px;
  border-radius: 24px;
}

.about__card span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.about__card strong {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.about__card--accent {
  top: 44px;
  left: 26px;
  background: linear-gradient(180deg, var(--primary), var(--secondary-deep));
  color: #fff;
}

.about__card--neutral {
  right: 40px;
  bottom: 206px;
  background: rgba(255, 255, 255, 0.88);
}

.about__diagram {
  position: absolute;
  inset: auto auto 34px 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__diagram-circle {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 40px rgba(19, 40, 51, 0.12);
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.about__diagram-line {
  width: 48px;
  height: 2px;
  background: rgba(0, 51, 160, 0.18);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.check-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.check-list i {
  margin-top: 4px;
  color: var(--primary);
}

.about__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.about__cta p {
  margin: 0;
}

.plans {
  background: linear-gradient(180deg, rgba(45, 109, 246, 0.05), transparent);
}

.plans__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 30px;
}

.plan-card--featured {
  background: linear-gradient(180deg, var(--primary) 0%, var(--bright) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.plan-card--featured,
.plan-card--featured li,
.plan-card--featured .text-link {
  color: #fff;
}

.plan-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.plan-card__top i {
  font-size: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(227, 232, 41, 0.22);
  color: inherit;
  font-size: 0.84rem;
  font-weight: 700;
}

.plan-card ul {
  margin: 18px 0 26px;
  padding-left: 18px;
}

.text-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--bright);
  transition: transform 0.25s ease;
}

.process {
  padding-top: 32px;
}

.process__inner {
  padding: 38px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(227, 232, 41, 0.24), transparent 24%),
    linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: var(--shadow);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.process__steps article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process__steps strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(227, 232, 41, 0.22);
  color: var(--accent);
}

.process__steps p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.testimonials__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  padding: 28px;
  border-radius: 26px;
}

.testimonial-card__person {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 51, 160, 0.14);
}

.testimonial-card__person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card p {
  margin: 0 0 22px;
  line-height: 1.8;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 4px;
}

.faq {
  padding-bottom: 110px;
}

.faq__items {
  display: grid;
  gap: 16px;
}

.faq__items details {
  padding: 22px 24px;
  border-radius: 22px;
}

.faq__items summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq__items summary::-webkit-details-marker {
  display: none;
}

.faq__items p {
  margin: 14px 0 0;
}

.footer {
  position: relative;
  background: linear-gradient(180deg, var(--primary), #01246f);
  color: #fff;
}

.footer__inner {
  padding: 76px 0 58px;
  align-items: start;
}

.footer__brand p,
.footer__cols p,
.footer__cols a {
  color: rgba(255, 255, 255, 0.74);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer__cols div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1db954;
  color: #fff;
  box-shadow: 0 18px 32px rgba(29, 185, 84, 0.32);
  font-size: 1.55rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
}

.admin-page {
  min-height: 100vh;
}

.admin-shell {
  width: min(calc(100% - 32px), 760px);
  margin: 0 auto;
  padding: 72px 0;
}

.admin-card {
  padding: 38px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.admin-card--highlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(227, 232, 41, 0.22), transparent 26%),
    radial-gradient(circle at bottom left, rgba(0, 174, 199, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.94));
}

.admin-card--highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--primary), var(--bright), var(--secondary), var(--accent));
}

.admin-card h1 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.admin-card p {
  color: var(--muted);
  line-height: 1.7;
}

.admin-header-block {
  margin-bottom: 22px;
}

.admin-hero-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  gap: 18px;
  margin: 24px 0 22px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--bright));
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 51, 160, 0.18);
}

.admin-hero-band span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.admin-hero-band strong {
  font-size: 1.3rem;
}

.admin-hero-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

.admin-logo-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 51, 160, 0.1);
}

.admin-logo-preview img {
  max-width: 240px;
  max-height: 72px;
  object-fit: contain;
}

.admin-logo-preview--band {
  min-height: 84px;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.admin-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--bright);
  font-weight: 700;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.admin-logout {
  color: var(--primary);
  font-weight: 700;
}

.admin-form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.admin-form label,
.admin-status span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
}

.admin-form input {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(0, 51, 160, 0.14);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.admin-form textarea {
  min-height: 132px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 51, 160, 0.14);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.admin-form small {
  color: var(--gray);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.admin-status {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 174, 199, 0.08), rgba(45, 109, 246, 0.08));
}

.admin-status div {
  display: grid;
  gap: 8px;
}

.admin-status strong,
.admin-status a {
  font-size: 1.1rem;
  word-break: break-word;
}

.admin-status a {
  color: var(--bright);
}

.admin-feedback {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(227, 232, 41, 0.22);
  color: var(--primary-deep);
  font-weight: 700;
}

.admin-error {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 107, 107, 0.12);
  color: #8c1d1d;
  font-weight: 700;
}

.admin-error p {
  margin: 0;
}

@media (max-width: 1100px) {
  .feature-grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .about__grid,
  .faq__grid,
  .footer__inner,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .hero-media {
    min-height: 560px;
  }
}

@media (max-width: 860px) {
  section {
    padding: 78px 0;
  }

  .topbar {
    font-size: 0.78rem;
  }

  .topbar__inner,
  .topbar__links,
  .nav,
  .plans__grid,
  .process__steps,
  .footer__cols {
    grid-template-columns: 1fr;
  }

  .topbar__inner,
  .topbar__links {
    display: grid;
  }

  .topbar__inner {
    min-height: auto;
    gap: 6px;
    padding: 8px 0;
  }

  .topbar__inner p {
    line-height: 1.35;
  }

  .topbar__links {
    gap: 4px;
  }

  .topbar__links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .plans__grid,
  .process__steps,
  .footer__cols,
  .feature-grid,
  .testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about__frame {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .about__photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 260px;
  }

  .about__card,
  .about__diagram {
    position: relative;
    inset: auto;
    transform: none;
    max-width: none;
  }

  .about__diagram {
    justify-content: center;
    flex-direction: column;
  }

  .about__diagram-line {
    width: 2px;
    height: 24px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero__line {
    max-width: 220px;
    height: 12px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero__visual,
  .hero-media {
    min-height: 420px;
  }

  .hero-media {
    border-radius: 28px;
  }

  .hero-media__image {
    background-position: center;
  }

  .hero-media__actions {
    right: 14px;
  }

  .hero-media__actions button {
    width: 48px;
    height: 48px;
  }

  .admin-card {
    padding: 26px;
  }

  .admin-hero-band {
    grid-template-columns: 1fr;
  }

  .admin-actions .button {
    width: 100%;
  }
}
