/* Custom: 1.css */
@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url(":r:icomoon.woff2") format("woff2");
}
header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: var(--section-gap);
}

body {
 font-family: var(--font-family-main) !important;
 font-weight: var(--font-weight-body) !important;
 font-size: var(--font-size-base) !important;
  background: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.content-container {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-container {
    padding-left: var(--page-gap-reduced);
    padding-right: var(--page-gap-reduced);
  }
    section > div > div,
  section > div > div > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px var(--page-gap-reduced);
  }



  ul, ol {
    padding-left: 16px;
  }
}

.breadcrumbs-section {
  width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
}

.breadcrumbs-list .breadcrumbs-list-item {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

.breadcrumbs-list .breadcrumbs-list-item:last-child {
  color: var(--primary);
}

.breadcrumbs-list .breadcrumbs-list-item a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list .breadcrumbs-list-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-list .breadcrumbs-list-item a::after {
  content: "";
  margin: 0 10px 0 10px;
  border: solid rgba(0, 0, 0, 0.25);
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  padding: 5px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--section-gap);
  margin: var(--page-gap) auto;
  max-width: 1200px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.sidebar-column {
  position: relative;
}
@media (max-width: 768px) {
 .layout-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-row: 1; 
  }

  .main-column {
    grid-row: 2;
  }
}

/* FAQ блок */
details {
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  transition: var(--transition);
  font-family: var(--font-family-main);
}

details[open] {
  background: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  color: var(--light);
  list-style: none;
  outline: none;
  transition: var(--transition);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  background: var(--primary-hover);
}

details[open] summary {
  background: var(--accent-hover);
}

details div {
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  color: var(--light);
  background: var(--accent-transparent);
  line-height: 1.6;
}

/* Color scheme: color40 */
:root {
    --primary: #3d405b;
    --primary-hover: #51547a;
    --accent: #e07a5f;
    --accent-hover: #e9937c;
    --accent-secondary: #f1b2a0;
    --accent-transparent: rgba(224,122,95,0.3);
    --background: #f4f4f6;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0,0,0,0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #181818;
    --dark-default: rgba(0,0,0,0.85);
    --dark-muted: rgba(0,0,0,0.45);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;

  color: var(--dark);
}

.u_3308ac {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background-color: var(--header);
  box-shadow: var(--shadow);
}

.u_a4840e {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px var(--page-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.u_1b45db {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.u_a38ec4 {
  height: 32px;
  width: auto;
  display: block;
}

.u_35b940 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.u_485726 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
  transition: var(--transition);
}

.u_69f4dc {
  background-color: var(--primary);
  color: var(--light);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.u_69f4dc:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.u_cb4ff4 {
  background-color: transparent;
  color: var(--accent);
  border-color: rgba(0, 0, 0, 0.06);
}

.u_cb4ff4:hover {
  border-color: var(--accent);
  background-color: rgba(0, 0, 0, 0.02);
}

.u_84d621 {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-secondary);
  border-color: rgba(255, 255, 255, 0.12);
}

.u_5eac61 {
  padding: 24px var(--page-gap) 40px;
}

.u_47da0e {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.u_6ccdf7 {
  min-width: 0;
}

.u_2603e6 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background-color: rgba(0, 0, 0, 0.02);
  margin-bottom: 12px;
}

.u_2603e6::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--primary);
}

.u_a507ad {
  font-size: clamp(28px, 4.1vw, 40px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--dark);
}

.u_c5e7c0 {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark-muted);
}

.u_bfd54c {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.u_98115f {
  font-size: 15px;
  padding-inline: 22px;
}

.u_253b1d {
  font-size: 14px;
  padding-inline: 16px;
  backdrop-filter: blur(8px);
}

.u_ddf8a7 {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  background-color: var(--header);
  box-shadow: var(--shadow);
  padding: 10px 12px 12px;
}

.u_e7d159 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.u_62a0dd {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(255, 0, 90, 0.18);
  animation: livePulse 1.4s ease-out infinite;
}

.u_9e29ca {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  flex: 1 1 auto;
}

.u_5ed532 {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.u_49edaf {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.04), transparent),
              radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.04), transparent);
}

.u_6b4064 {
  width: 100%;
  height: auto;
  display: block;
}

.u_bb6f3c {
  stroke: rgba(0, 0, 0, 0.07);
  stroke-width: 1.2;
  stroke-dasharray: 5 5;
}

.u_6c79ee {
  stroke: url(#pulseLine);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
  animation: tickerDash 3.5s linear infinite;
}

.u_edfb2b {
  transform-origin: center;
  opacity: 0;
}

.u_263860 {
  animation: avatarFloat1 4.2s ease-in-out infinite;
}

.u_18d9b9 {
  animation: avatarFloat2 4.6s ease-in-out infinite;
}

.u_5edc01 {
  animation: avatarFloat3 4.8s ease-in-out infinite;
}

.u_76d7cf {
  opacity: 0;
}

.u_f34619 {
  animation: sparkBlink 3.4s ease-out infinite 0.2s;
}

.u_f1bcb1 {
  animation: sparkBlink 3.4s ease-out infinite 0.8s;
}

.u_752c1a {
  animation: sparkBlink 3.4s ease-out infinite 1.5s;
}

.u_029976 {
  animation: sparkBlink 3.4s ease-out infinite 2.1s;
}

.u_a4636e {
  margin-top: 8px;
  font-size: 11px;
  color: var(--dark-muted);
}

.u_86b121 {
  min-width: 0;
}

.u_224c4d {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--accent), var(--primary));
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.u_631cc5 {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.u_631cc5 img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.u_e73ec3 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.3), transparent 50%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.u_8344d5 {
  position: absolute;
  z-index: 3;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.u_015064 {
  left: 12%;
  bottom: 16%;
  right: 18%;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.u_f01952 {
  right: 9%;
  top: 13%;
  padding: 7px 9px;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateY(-6px);
}

.u_6f2eeb {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.u_e1b267 {
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.8), transparent 60%),
    linear-gradient(145deg, var(--primary), var(--accent));
}

.u_1cf378 {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-image:
    radial-gradient(circle at 60% 0%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(145deg, var(--accent), var(--primary));
}

.u_9e19f0 {
  min-width: 0;
}

.u_e73fe1 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.u_c33bf2 {
  font-size: 11px;
  color: var(--dark-muted);
}

.u_43caa4 {
  margin-top: 6px;
  display: flex;
  gap: 6px;
}

.u_a15e38 {
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.2;
  padding: 4px 12px;
  border: 1px solid transparent;
  background-color: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.u_d93b7c {
  border-color: rgba(0, 0, 0, 0.16);
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.5);
}

.u_d93b7c:hover {
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.9);
}

.u_745f68 {
  border-color: transparent;
  background-color: var(--primary);
  color: var(--light);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.u_745f68:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.u_917336 {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
  pointer-events: none;
}

.u_25b860 {
  width: 120px;
  height: 120px;
  bottom: 12%;
  left: 6%;
  animation: heroPulse 3.8s ease-out infinite;
}

.u_72d552 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 46%;
  animation: heroPulse 4.2s ease-out infinite 0.9s;
}

.u_5cc580 {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.55);
  color: var(--light);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 3;
  backdrop-filter: blur(12px);
}

.u_92968e {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: var(--primary);
}

.u_b6fa8a {
  white-space: nowrap;
}

/* Animations */
@keyframes livePulse {
  0% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(255, 0, 90, 0.24);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 0, 90, 0);
  }
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(255, 0, 90, 0);
  }
}

@keyframes tickerDash {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -80;
  }
}

@keyframes avatarFloat1 {
  0% {
    transform: translateY(5px) scale(0.88);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  50% {
    transform: translateY(-3px) scale(1);
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateY(5px) scale(0.88);
    opacity: 0;
  }
}

@keyframes avatarFloat2 {
  0% {
    transform: translateY(-6px) scale(0.9);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  52% {
    transform: translateY(4px) scale(1.03);
    opacity: 1;
  }
  86% {
    opacity: 1;
  }
  100% {
    transform: translateY(-6px) scale(0.9);
    opacity: 0;
  }
}

@keyframes avatarFloat3 {
  0% {
    transform: translateY(4px) scale(0.92);
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  54% {
    transform: translateY(-3px) scale(1.02);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(4px) scale(0.92);
    opacity: 0;
  }
}

@keyframes sparkBlink {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(0.3);
    opacity: 0;
  }
}

@keyframes heroPulse {
  0% {
    transform: scale(0.7);
    opacity: 0.5;
  }
  60% {
    transform: scale(1.05);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .u_47da0e {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
  }

  .u_224c4d {
    border-radius: 24px;
  }

  .u_015064 {
    left: 8%;
    right: 14%;
  }

  .u_f01952 {
    right: 6%;
  }
}

@media (max-width: 768px) {
  .u_a4840e {
    padding-inline: 14px;
  }

  .u_35b940 {
    justify-content: flex-end;
    flex: 1 1 auto;
  }

  .u_485726 {
    padding: 8px 14px;
    font-size: 13px;
  }

  .u_cb4ff4 {
    display: none;
  }

  .u_5eac61 {
    padding: 18px 16px 32px;
  }

  .u_47da0e {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .u_6ccdf7 {
    order: 1;
  }

  .u_86b121 {
    order: 2;
  }

  .u_a507ad {
    font-size: 26px;
  }

  .u_c5e7c0 {
    font-size: 14px;
  }

  .u_bfd54c {
    gap: 8px;
  }

  .u_98115f {
    flex: 0 0 auto;
  }

  .u_253b1d {
    flex: 0 0 auto;
  }

  .u_ddf8a7 {
    max-width: 100%;
  }

  .u_224c4d {
    border-radius: 22px;
    padding: 8px;
  }

  .u_631cc5 img {
    max-height: 360px;
  }

  .u_015064 {
    left: 8%;
    right: 12%;
    bottom: 12%;
    padding: 8px 10px;
  }

  .u_f01952 {
    right: 7%;
    top: 12%;
  }

  .u_6f2eeb {
    width: 36px;
    height: 36px;
  }

  .u_1cf378 {
    width: 30px;
    height: 30px;
  }

  .u_e73fe1 {
    font-size: 13px;
  }

  .u_c33bf2 {
    font-size: 10px;
  }

  .u_a15e38 {
    padding-inline: 10px;
    font-size: 10px;
  }

  .u_25b860 {
    width: 90px;
    height: 90px;
  }

  .u_72d552 {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .u_a4840e {
    gap: 8px;
  }

  .u_a38ec4 {
    height: 28px;
  }

  .u_5eac61 {
    padding-inline: 14px;
  }

  .u_2603e6 {
    font-size: 10px;
  }

  .u_a507ad {
    font-size: 24px;
  }

  .u_bfd54c {
    flex-wrap: wrap;
  }

  .u_98115f {
    width: auto;
  }

  .u_253b1d {
    padding-inline: 12px;
  }

  .u_ddf8a7 {
    padding: 9px 10px 10px;
  }

  .u_e7d159 {
    flex-wrap: wrap;
  }

  .u_015064 {
    left: 7%;
    right: 10%;
    bottom: 11%;
  }

  .u_f01952 {
    right: 5%;
  }

  .u_5cc580 {
    padding-inline: 7px;
  }
}

/* LINKS */
.links-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-gap);
  box-sizing: border-box;
}

.links-block-aurora92 {
  position: relative;
  box-sizing: border-box;
  color: var(--light);
}

.links-block-aurora92-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.links-block-aurora92-title-main {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.links-block-aurora92-title-sub {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.8;
}

.links-block-aurora92-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.links-block-aurora92-list li {
  box-sizing: border-box;
}

.links-block-aurora92-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: radial-gradient(circle at top left, var(--accent) 0%, var(--primary) 40%, var(--dark) 100%);
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  transform-origin: center;
  transform: translateY(0) scale(1);
  transition:
    background var(--transition),
    color var(--transition),
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    opacity 220ms ease-out;
  box-sizing: border-box;
  will-change: transform, box-shadow, opacity;
}

.links-block-aurora92-list a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--light);
  opacity: 0.8;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.18),
    0 0 12px rgba(255, 255, 255, 0.7);
  transform: scale(0.8);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, opacity 200ms ease-out;
}

.links-block-aurora92-list a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.0;
  pointer-events: none;
  transition: opacity 220ms ease-out, transform 220ms ease-out;
  transform: scale(0.96);
}

.links-block-aurora92-list a:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.links-block-aurora92-list a:hover::before {
  transform: scale(1);
  opacity: 1;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.28),
    0 0 16px rgba(255, 255, 255, 0.9);
}

.links-block-aurora92-list a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.links-block-aurora92-list a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.links-block-aurora92-list li:nth-child(3n) a {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.links-block-aurora92-list li:nth-child(4n) a {
  background: linear-gradient(135deg, var(--dark), var(--primary));
}

.links-block-aurora92-list li:nth-child(5n) a {
  background: linear-gradient(135deg, var(--accent), var(--dark));
}

.links-block-aurora92-list li:nth-child(odd) a {
  animation: links-block-aurora92-fadeSlide 1200ms ease-out both;
}

.links-block-aurora92-list li:nth-child(even) a {
  animation: links-block-aurora92-fadeScale 1200ms ease-out both;
}

.links-block-aurora92-list li:nth-child(1) a { animation-delay: 40ms; }
.links-block-aurora92-list li:nth-child(2) a { animation-delay: 80ms; }
.links-block-aurora92-list li:nth-child(3) a { animation-delay: 120ms; }
.links-block-aurora92-list li:nth-child(4) a { animation-delay: 160ms; }
.links-block-aurora92-list li:nth-child(5) a { animation-delay: 200ms; }
.links-block-aurora92-list li:nth-child(6) a { animation-delay: 240ms; }
.links-block-aurora92-list li:nth-child(7) a { animation-delay: 280ms; }
.links-block-aurora92-list li:nth-child(8) a { animation-delay: 320ms; }
.links-block-aurora92-list li:nth-child(9) a { animation-delay: 360ms; }
.links-block-aurora92-list li:nth-child(10) a { animation-delay: 400ms; }
.links-block-aurora92-list li:nth-child(11) a { animation-delay: 440ms; }
.links-block-aurora92-list li:nth-child(12) a { animation-delay: 480ms; }
.links-block-aurora92-list li:nth-child(13) a { animation-delay: 520ms; }
.links-block-aurora92-list li:nth-child(14) a { animation-delay: 560ms; }
.links-block-aurora92-list li:nth-child(15) a { animation-delay: 600ms; }
.links-block-aurora92-list li:nth-child(16) a { animation-delay: 640ms; }
.links-block-aurora92-list li:nth-child(17) a { animation-delay: 680ms; }
.links-block-aurora92-list li:nth-child(18) a { animation-delay: 720ms; }
.links-block-aurora92-list li:nth-child(19) a { animation-delay: 760ms; }
.links-block-aurora92-list li:nth-child(20) a { animation-delay: 800ms; }

@keyframes links-block-aurora92-fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes links-block-aurora92-fadeScale {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateY(-1px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .links-wrapper {
    padding: calc(var(--section-gap) * 0.75);
  }

  .links-block-aurora92-header {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .links-block-aurora92-title-main {
    font-size: 1.4rem;
  }

  .links-block-aurora92-title-sub {
    font-size: 0.9rem;
  }

  .links-block-aurora92-list {
    gap: 10px;
  }

  .links-block-aurora92-list li {
    width: 100%;
  }

  .links-block-aurora92-list a {
    width: 100%;
    display: block;
    text-align: center;
    white-space: normal;
    padding: 12px 16px;
    margin: 2px 0;
  }
}

/* FOOTER */
.footer-block-elite732 {
  background: var(--header);
  padding: var(--section-gap) var(--page-gap);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15), 0 -2px 8px var(--shadow);
  overflow-x: hidden;
}

.footer-inner-elite732 {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}

.footer-brand-elite732 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-nav-elite732 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-link-elite732 {
  color: var(--primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition), opacity var(--transition);
}

.footer-link-elite732::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width var(--transition);
}

.footer-link-elite732:hover {
  color: var(--primary-hover);
  opacity: 0.92;
}

.footer-link-elite732:hover::after {
  width: 100%;
}

.footer-separator-elite732 {
  color: var(--primary);
  opacity: 0.4;
}

.footer-meta-elite732 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--page-gap-reduced);
  flex-wrap: wrap;
}

.footer-copy-elite732 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--primary);
  opacity: 0.9;
}

.footer-social-elite732 {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link-elite732 {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.footer-social-icon-elite732 {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  transition: fill var(--transition), transform var(--transition), opacity var(--transition);
}

.footer-social-link-elite732:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

.footer-social-link-elite732:hover .footer-social-icon-elite732 {
  fill: var(--primary-hover);
  transform: scale(1.05);
  opacity: 1;
}

@media (max-width: 767px) {
  .footer-block-elite732 {
    padding: calc(var(--section-gap) * 0.8) var(--page-gap);
  }

  .footer-inner-elite732 {
    gap: calc(var(--page-gap-reduced) * 1.2);
  }

  .footer-brand-elite732 {
    justify-content: center;
  }

  .footer-nav-elite732 {
    order: 3;
    text-align: center;
  }

  .footer-meta-elite732 {
    order: 2;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-copy-elite732 {
    font-size: 0.8rem;
  }

  .footer-social-elite732 {
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-inner-elite732 {
    flex-direction: column;
    gap: var(--page-gap);
  }

  .footer-brand-elite732 {
    justify-content: flex-start;
  }

  .footer-nav-elite732 {
    justify-content: center;
  }

  .footer-meta-elite732 {
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-inner-elite732 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--page-gap);
  }

  .footer-brand-elite732 {
    flex: 0 0 auto;
  }

  .footer-nav-elite732 {
    flex: 1 1 auto;
  }

  .footer-meta-elite732 {
    flex: 0 0 auto;
    max-width: 40%;
    justify-content: flex-end;
  }
}

/* BODY */
.u_c8bca1 {

  width: 100%;

  box-sizing: border-box;

  padding: var(--section-gap) 0;

  background: var(--light);

  overflow-x: hidden;

}



.u_278855 {

  display: flex;

  align-items: flex-start;

  gap: var(--page-gap);

  max-width: 1200px;

  margin: 0 auto;

  box-sizing: border-box;

}



.u_7526a2 {

  flex: 0 0 320px;

  max-width: 320px;

  min-width: 0;

  position: relative;

  aspect-ratio: 2/3;

  box-sizing: border-box;

  transition: box-shadow 0.3s var(--transition), transform 0.3s var(--transition);

  clip-path: polygon(0 0, 100% 5%, 90% 100%, 0 90%);

  overflow: hidden;

  box-shadow: var(--shadow-lg, 0 6px 36px rgba(0,0,0,0.16));

  will-change: transform, box-shadow;

  background: var(--accent-transparent);

  z-index: 1;

}

.u_7526a2:hover,

.u_7526a2:focus-within {

  box-shadow: 0 12px 48px rgba(10,0,93,0.22);

  transform: translateY(-4px) scale(1.022);

}



.u_7526a2 img {

  display: block;

  width: 100%;

  height: auto;

  object-fit: cover;

  filter: none;

  transition: filter 0.3s var(--transition), transform 0.3s var(--transition);

  border-radius: 0;

}



.u_a432f5 {

  flex: 1 1 0;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: var(--page-gap-reduced);

  box-sizing: border-box;

  padding: var(--page-gap) 0;

}



.u_e72ebd {

  color: var(--dark);

  font-size: 1.12rem;

  line-height: 1.7;

  font-weight: 400;

  box-sizing: border-box;

}



.u_e72ebd h2,

.u_e72ebd h3 {

  margin: 0 0 0.6em 0;

  color: var(--accent);

  font-family: inherit;

  font-weight: 700;

  line-height: 1.16;

}

.u_e72ebd h2 { font-size: 2.2rem; }

.u_e72ebd h3 { font-size: 1.35rem; }



.u_e72ebd p {

  margin: 0 0 1em 0;

  color: var(--dark-default, #222);

}

.u_e72ebd ul,

.u_e72ebd ol {

  margin: 0 0 1.1em 1.2em;

  padding: 0;

}

.u_e72ebd ul li,

.u_e72ebd ol li {

  margin-bottom: 0.5em;

  color: var(--dark-muted);

  font-size: 1rem;

  position: relative;

}

.u_e72ebd ul li::marker { color: var(--primary); }

.u_e72ebd ol li::marker { color: var(--accent); }



.u_e72ebd b,

.u_e72ebd strong { font-weight: 700; color: var(--dark); }

.u_e72ebd i,

.u_e72ebd em { font-style: italic; color: var(--accent); }



.u_e72ebd a {

  color: var(--primary);

  text-decoration: underline;

  transition: color .22s var(--transition);

}

.u_e72ebd a:hover { color: var(--primary-hover); }



.u_e72ebd table {

  border-collapse: separate;

  width: 100%;

  max-width: 100%;

  overflow-x: auto;

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  margin: 1em 0;

  font-size: 1rem;

}

.u_e72ebd th,

.u_e72ebd td {

  border: 1px solid var(--accent-secondary, #ABA1FB);

  padding: 0.66em 1em;

  text-align: left;

  color: var(--dark);

  background: rgba(255,255,255,.99);

}

.u_e72ebd th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 600;

}

.u_e72ebd tr:nth-child(even) td {

  background: var(--background);

}



.u_7d39f3.u_eb8799 {

  margin-top: var(--page-gap-reduced);

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  font-weight: 600;

  font-size: 1.13rem;

  padding: 12px 28px;

  border: none;

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  text-decoration: none;

  cursor: pointer;

  transition:

    background 0.22s var(--transition),

    transform 0.18s var(--transition),

    box-shadow 0.18s var(--transition);

  outline: none;

  max-width: max-content;

  will-change: background, transform;

}



.u_7d39f3.u_eb8799:hover,

.u_7d39f3.u_eb8799:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.037);

  box-shadow: 0 8px 32px rgba(252,101,131,0.18);

}



@media (max-width: 1024px) {

  .u_c8bca1 { padding: var(--page-gap) 0; }

  .u_278855 {

    gap: var(--page-gap-reduced);

  }

  .u_7526a2 { flex-basis: 240px; max-width: 240px;}

}



@media (max-width: 768px) {

  .u_c8bca1 { padding: var(--page-gap-reduced) 0; }

  .u_278855 {

    flex-direction: column;

    align-items: stretch;

    gap: var(--page-gap-reduced);

    max-width: 98vw;

    width: 100%;

  }

  .u_7526a2 {

    flex-basis: auto;

    max-width: 100%;

    width: 100%;

    aspect-ratio: 2/3;

    margin-bottom: var(--page-gap-reduced);

    clip-path: polygon(0 0, 100% 7%, 95% 100%, 0 93%);

  }

  .u_a432f5 {

    padding: 0;

    gap: var(--page-gap-reduced);

  }

  .u_7d39f3.u_eb8799 {

    font-size: 1rem;

    padding: 12px 22px;

  }

  .u_e72ebd table,

  .u_e72ebd thead,

  .u_e72ebd tbody,

  .u_e72ebd tr,

  .u_e72ebd th,

  .u_e72ebd td {

    font-size: 0.95rem;

    word-break: break-word;

  }

}



@media (max-width: 480px) {

  .u_278855 { max-width: 100vw; }

  .u_7526a2 { aspect-ratio: 1/1.195; }

}



*,

*:before,

*:after {

  box-sizing: inherit;

}

/* BODY1 */
.u_ea3dca {

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  max-width: 840px;

  margin: var(--section-gap) auto;

  padding: 40px 32px;

  box-sizing: border-box;

  overflow-x: hidden;

  transition: var(--transition);

  display: flex;

  justify-content: center;

  align-items: stretch;

}



.u_52a28e {

  max-width: 700px;

  width: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

}





.u_28534b {

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.7;

  font-family: inherit;

  letter-spacing: 0.01em;

  transition: var(--transition);

}





.u_28534b h2,

.u_28534b h3 {

  color: var(--accent);

  margin-top: 0;

  margin-bottom: 0.7em;

  font-weight: 700;

  line-height: 1.2;

}



.u_28534b h2 {

  font-size: 2.1rem;

  margin-bottom: 1em;

}

.u_28534b h3 {

  font-size: 1.35rem;

  margin-bottom: 0.8em;

}





.u_28534b p {

  margin: 0 0 1.1em 0;

  font-size: 1.05em;

  line-height: 1.65;

}





.u_28534b ul,

.u_28534b ol {

  margin: 0 0 1.2em 1.5em;

  padding-left: 1.1em;

}



.u_28534b ul {

  list-style: disc inside;

}

.u_28534b ol {

  list-style: decimal inside;

}

.u_28534b li {

  margin-bottom: 0.5em;

  line-height: 1.6;

}





.u_28534b a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.u_28534b a:hover,

.u_28534b a:focus {

  color: var(--primary-hover);

  text-decoration: underline;

}





.u_28534b table {

  width: 100%;

  margin: 1.2em 0;

  border-collapse: separate;

  border-spacing: 0;

  overflow-x: auto;

  display: block;

  font-size: 1em;

  background: var(--light);

  box-shadow: none;

  border-radius: var(--radius);

}



.u_28534b thead {

  background: var(--accent-transparent);

}



.u_28534b th,

.u_28534b td {

  padding: 0.7em 1em;

  border: 1px solid var(--dark-muted);

  text-align: left;

  vertical-align: top;

}



.u_28534b th {

  font-weight: 600;

  color: var(--accent);

  background: var(--light);

}



.u_28534b tr:nth-child(even) td {

  background: rgba(171, 161, 251, 0.07);

}





.u_28534b b,

.u_28534b strong {

  font-weight: 700;

  color: var(--primary);

}

.u_28534b i,

.u_28534b em {

  font-style: italic;

  color: var(--accent-hover);

}





@media (max-width: 768px) {

  .u_ea3dca {

    padding: 24px 12px;

    border-radius: calc(var(--radius) * 1.5);

  }

  .u_52a28e {

    max-width: 100%;

    padding: 0;

  }

  .u_28534b table {

    font-size: 0.95em;

    overflow-x: auto;

    display: block;

    border-radius: var(--radius);

  }

}



@media (max-width: 480px) {

  .u_ea3dca {

    padding: 14px 4px;

  }

  .u_28534b h2 {

    font-size: 1.23rem;

    margin-bottom: 0.8em;

  }

  .u_28534b h3 {

    font-size: 1.04rem;

    margin-bottom: 0.5em;

  }

}

/* BODY2 */
.content-block-match412 {
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  background: var(--light);
  color: var(--dark-default);
}

.content-block-match412 * {
  box-sizing: border-box;
}

.content-wrapper-blend412 {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(var(--section-gap) * 0.9);
}

/* Feature strip */
.feature-grid-match412 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--page-gap);
  padding: var(--page-gap-reduced);
  border-radius: calc(var(--radius) * 2);
  background: var(--light);
  box-shadow: var(--shadow);
}

.feature-item-match412 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px 10px;
  min-width: 0;
}

.feature-icon-match412 {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent-transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon-match412::before,
.feature-icon-match412::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

/* Shield icon */
.feature-icon--shield-match412::before {
  width: 18px;
  height: 22px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  clip-path: polygon(50% 0%, 100% 15%, 100% 55%, 50% 100%, 0% 55%, 0% 15%);
}

/* Chat icon */
.feature-icon--chat-match412::before {
  width: 20px;
  height: 16px;
  border-radius: 6px;
  border: 2px solid var(--accent);
  box-sizing: border-box;
}

.feature-icon--chat-match412::after {
  width: 10px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 0 0 0 4px;
  bottom: 4px;
  right: 6px;
  transform: translateY(40%);
}

/* Lock icon */
.feature-icon--lock-match412::before {
  width: 18px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid var(--accent);
  bottom: 6px;
}

.feature-icon--lock-match412::after {
  width: 14px;
  height: 14px;
  border-radius: 8px;
  border: 2px solid var(--accent);
  border-bottom: none;
  top: 3px;
}

.feature-title-match412 {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--dark-default);
  font-size: 0.95rem;
}

/* Main content layout */
.content-layout-match412 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: calc(var(--page-gap) * 1.4);
  align-items: stretch;
}

.content-image--flare412 {
  position: relative;
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--accent-transparent);
}

.content-image--flare412 img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.image-overlay-match412 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, var(--accent-transparent), transparent 55%);
  pointer-events: none;
}

/* Text content */
.text-content--spark412 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 24px;
  border-radius: calc(var(--radius) * 2);
      background: var(--light);
  box-shadow: var(--shadow);
  min-width: 0;
  color: var(--dark-default);
}

.text-content--spark412 .text-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-default);
}

.text-content--spark412 .text-content h2,
.text-content--spark412 .text-content h3 {
  color: var(--dark);
  margin-top: 0;
}

.text-content--spark412 .text-content p {
  margin: 0 0 0.8em;
  color: var(--dark-default);
}

.text-content--spark412 .text-content ul,
.text-content--spark412 .text-content ol {
  margin: 0 0 1em 1.2em;
  padding: 0;
  color: var(--dark-default);
}

.text-content--spark412 .text-content li {
  margin: 0.2em 0;
}

.text-content--spark412 .text-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.text-content--spark412 .text-content a:hover {
  color: var(--accent-hover);
}

/* Tables inside content */
.text-content--spark412 .text-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 0.5em 0 1em;
}

.text-content--spark412 .text-content thead {
  background: var(--accent-transparent);
}

.text-content--spark412 .text-content th,
.text-content--spark412 .text-content td {
  padding: 8px 10px;
  border: 1px solid var(--dark-muted);
}

.text-content--spark412 .text-content-wrapper-table {
  width: 100%;
  overflow-x: auto;
}

/* CTA Button */
.cta-button--soft412.button {
  margin-top: 4px;
  align-self: flex-start;
  background: var(--primary);
  color: var(--light);
  border-radius: 999px;
  padding: 12px 26px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-button--soft412.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 60%);
  transform: translateX(-120%);
  transition: var(--transition);
}

.cta-button--soft412.button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.cta-button--soft412.button:hover::before {
  transform: translateX(0%);
}

.cta-button--soft412.button:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

/* Wide image feature */
.wide-image-block-match412 {
  width: 100%;
}

.wide-image-wrapper-match412 {
  position: relative;
  border-radius: calc(var(--radius) * 2.5);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--accent-transparent);
}

.wide-image-wrapper-match412 img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.wide-image-overlay-match412 {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  backdrop-filter: blur(0.5px);
}

.wide-image-text-match412 {
  position: absolute;
  inset: auto 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--light);
  max-width: 420px;
}

.wide-image-kicker-match412 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.wide-image-main-match412 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .content-layout-match412 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--page-gap);
  }

  .text-content--spark412 {
    padding: 18px 18px;
  }

  .wide-image-text-match412 {
    max-width: 60%;
  }
}

@media (max-width: 768px) {
  .content-block-match412 {
    padding: var(--section-gap) var(--page-gap-reduced);
  }

  .feature-grid-match412 {
    grid-template-columns: 1fr;
    padding: 14px 12px;
  }

  .feature-item-match412 {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 8px 4px;
  }

  .feature-title-match412 {
    font-size: 0.95rem;
  }

  .content-layout-match412 {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-image--flare412 {
    order: -1;
    height: auto;
  }

  .wide-image-text-match412 {
    inset: auto 16px 16px 16px;
    max-width: 100%;
  }

  .wide-image-main-match412 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-button--soft412.button {
    width: auto;
    max-width: 100%;
    padding-inline: 22px;
  }

  .text-content--spark412 {
    padding: 16px 14px;
  }

  .feature-icon-match412 {
    width: 32px;
    height: 32px;
  }

  .wide-image-main-match412 {
    font-size: 0.95rem;
  }
}