/* 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: color19 */
:root {
    --primary: #ffb6c1;
    --primary-hover: #ffc2cc;
    --accent: #add8e6;
    --accent-hover: #bce0ec;
    --accent-secondary: #cae8f3;
    --accent-transparent: rgba(173, 216, 230, 0.3);
    --background: #ffffff;
    --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: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --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;

}



body {

  overflow-x: hidden;

  margin: 0;

  background: var(--background);

}





.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  padding: 16px var(--page-gap);

  max-width: 1200px;

  margin: 0 auto;

}





.logo-link {

  z-index: 12;

  display: inline-flex;

  align-items: center;

}





.main-nav {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: #2a2a2a;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  padding-top: 80px;

  transform: translateY(-100%);

  transition: transform 0.4s ease;

  z-index: 1000;

  overflow-y: auto;

}



.main-nav.open {

  transform: translateY(0);

}



.menu-list {

  list-style: none;

  padding: 0 20px;

  margin: 0;

  width: 100%;

}



.menu-list li {

  position: relative;

}



.menu-list li a,

.dropbtn {

  display: block;

  padding: 14px 16px;

  color: #fff;

  font-weight: 500;

  text-decoration: none;

  text-transform: uppercase;

  transition: background 0.3s, color 0.3s;

  cursor: pointer;

}



.menu-list li a:hover,

.dropbtn:hover {

  background:  var(--accent, #8f66ff);;

  color: #fff;

}





.dropdown-content {

  display: none;

  flex-direction: column;

  background: #3b3b3b;

  margin-top: 0;

}



.dropdown.open > .dropdown-content {

  display: flex;

}



.dropdown-content a {

  padding-left: 30px;

  font-size: 1rem;

  color: #fff;

}



.dropdown-content a:hover {

  background: #78ae1b;

}





.back-btn {

  display: none;

  width: 100%;

  padding: 12px 20px;

}



.back-btn a {

  color: #fff;

  font-weight: 600;

  display: block;

}



.back-btn a:hover {

  color: #78ae1b;

}





.menu-toggle {

  background: none;

  border: none;

  cursor: pointer;

  z-index: 1100;

}



.burger-lines,

.close-icon {

  width: 24px;

  height: 24px;

  stroke: #fff;

}



.hidden {

  display: none;

}





.lang-switcher {

  position: relative;

  display: inline-block;

  z-index: 1100;

}



.lang-switcher__button {

  background: none;

  border: none;

  cursor: pointer;

  font-weight: 600;

  font-size: 14px;

  padding: 8px 12px;

  border-radius: 6px;

  display: flex;

  align-items: center;

  gap: 6px;

  color: #333;

}



.lang-switcher__list {

  position: absolute;

  top: 100%;

  right: 0;

  display: none;

  flex-direction: column;

  background: #fff;

  border-radius: 6px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  padding: 8px 0;

  min-width: 160px;

  max-height: 300px;

  overflow-y: auto;

  column-count: 2;

  column-gap: 10px;

}



.lang-switcher.open .lang-switcher__list {

  display: flex;

}



.lang-switcher__list li {

  list-style: none;

}



.lang-switcher__list a {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 8px 14px;

  text-decoration: none;

  color: #333;

  transition: background 0.3s;

}



.lang-switcher__list a:hover {

  background: #f0f0f0;

}



.flag {

  width: 20px;

  height: 14px;

  object-fit: cover;

  border-radius: 2px;

}





@media(min-width:1024px){

  .menu-toggle { display: none; }



  .main-nav {

    position: static;

    transform: none;

    flex-direction: row;

    width: auto;

    height: auto;

    background: none;

    padding: 0;

    gap: 30px;

    align-items: center;

    overflow: visible;

  }



  .menu-list {

    flex-direction: row;

    gap: 25px;

    width: auto;

  }



  .menu-list li { display: inline-flex; }



  .menu-list li a,

  .dropbtn {

    padding: 12px 16px;

    color: #333;

  }



  .dropdown-content {

    display: none;

    flex-direction: column;

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 180px;

    background: #fff;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

    border-radius: 6px;

    z-index: 100;

  }



  .dropdown:hover .dropdown-content { display: flex; }



  .dropdown-content a { color: #333; }



  .lang-switcher__button { color:  var(--accent, #8f66ff); }



  

  .lang-switcher__close {

    display: none !important;

  }



  

  .lang-switcher__list {

    position: absolute;

    top: 100%;

    right: 0;

    width: auto;

    max-height: 300px;

    background: #fff;

    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    column-count: 2;

    overflow-y: auto;

    z-index: 100;

  }

}





@media(max-width:1023px){

  .header-inner {

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    flex-wrap: nowrap;

  }



  .main-nav {

    z-index: 1000;

    padding-top: 80px;

  }



  .lang-switcher {

    position: relative;

    z-index: 2000;

    display: inline-block;

  }



  .lang-switcher__button {

    color:  var(--accent, #8f66ff);

    z-index: 2200;

  }



  

 .lang-switcher__list {

    position: fixed;

    top: -20px; 

    left: 0;

    width: 100%;

    height: 100vh;

    max-height: none; 

    background: rgba(42,42,42,0.95);

    display: none;

    flex-direction: column;

    padding-top: 80px;

    column-count: 2;

    column-gap: 10px;

    overflow-y: auto;

    z-index: 2100;

  }



  .lang-switcher.open .lang-switcher__list {

    display: flex;

  }



  .lang-switcher__list a {

    color: #fff;

    padding: 16px 20px;

    width: 100%;

  }



  .lang-switcher__list a:hover {

    background: #78ae1b;

  }



  

  .lang-switcher__close {

    position: fixed;

    top: 20px;

    right: 20px;

    font-size: 2rem;

    color: #fff;

    cursor: pointer;

    display: none;

    z-index: 2200;

  }



  .lang-switcher.open .lang-switcher__close {

    display: block;

  }

}







@media (max-width: 480px) {

  .hero-title {font-size: 1.45rem;}

  .btn-signup, .hero-cta {font-size: 1rem;}

  .menu-toggle {margin-right: 6px; width: 48px;}

}







.main-nav.open {display: flex;}





.hero-minimal {

  display: flex;

  align-items: stretch;

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--section-gap) var(--page-gap);

  gap: calc(var(--page-gap) * 1.2);

  min-height: 60vh;

}



.hero-image-group {

  flex: 0 0 320px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  min-width: 0;

}



.hero-image-bg {

  position: relative;

  width: 100%;

  aspect-ratio: 2/3;

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);

  background: var(--accent);

  display: flex;

  align-items: center;

  justify-content: center;

}



.hero-image-bg img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  vertical-align: middle;

  z-index: 1;

  border-radius: inherit;

  user-select: none;

  pointer-events: none;

}



.hero-image-overlay {

  position: absolute;

  inset: 0;

  z-index: 2;

  background: linear-gradient(135deg, rgba(0,0,0,0.20) 40%, rgba(0,0,0,0.05) 100%);

  pointer-events: none;

  transition: background 0.3s var(--transition);

  backdrop-filter: blur(0px);

  will-change: background;

}



.hero-content {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 2.2rem;

  min-width: 0;

  max-width: 500px;

}



.hero-title {

  font-size: 2.4rem;

  font-weight: 700;

  margin: 0 0 0.4em 0;

  color: var(--accent);

  letter-spacing: -0.02em;

  line-height: 1.13;

}



.hero-desc {

  margin: 0 0 1.3em 0;

  font-size: 1.17rem;

  line-height: 1.55;

  color: var(--dark-muted);

  max-width: 90%;

}



.hero-cta-btn {

  display: inline-flex;

  align-items: center;

  gap: 0.65em;

  background: var(--primary);

  color: var(--light);

  font-weight: 600;

  font-size: 1.12rem;

  padding: 0.95em 2em 0.95em 1.5em;

  border: none;

  border-radius: calc(var(--radius) * 1.7);

  text-decoration: none;

  cursor: pointer;

  box-shadow: 0 6px 26px -12px var(--primary);

  outline: none;

  transition: 

    background 0.25s var(--transition),

    transform 0.18s cubic-bezier(0.38,0,0.19,0.99),

    box-shadow 0.26s var(--transition);

  will-change: transform, background;

  min-width: max-content;

  position: relative;

}



.hero-cta-btn .cta-arrow {

  transition: transform 0.24s var(--transition), color 0.18s var(--transition);

  margin-left: 0.4em;

}



.hero-cta-btn:hover,

.hero-cta-btn:focus-visible {

  background: var(--primary-hover);

  transform: scale(1.037);

  box-shadow: 0 9px 30px -10px var(--primary-hover);

}



.hero-cta-btn:hover .cta-arrow,

.hero-cta-btn:focus-visible .cta-arrow {

  transform: translateX(3px) scale(1.07);

  color: var(--accent-secondary);

}



@media (max-width: 1024px) {

  .hero-minimal {

    max-width: 100%;

    gap: var(--page-gap);

    padding: var(--section-gap) calc(var(--page-gap) * 0.7);

  }

  .header-container {

    max-width: 100%;

    padding: calc(var(--page-gap) * 0.7) var(--page-gap);

  }

}



@media (max-width: 768px) {

  .hero-minimal {

    flex-direction: column;

    gap: calc(var(--section-gap) * 0.8);

    padding: var(--section-gap) var(--page-gap-reduced);

    min-height: unset;

    align-items: stretch;

  }

  .hero-content {

    max-width: 100%;

    gap: 1.2em;

    align-items: flex-start;

  }

  .hero-image-group {

    flex: 0 0 auto;

    width: 94vw;

    max-width: 340px;

    margin: 0 auto;

  }

  .hero-desc {

    max-width: 100%;

    font-size: 1.05rem;

  }

}



@media (max-width: 480px) {

  .header-container {

    padding: calc(var(--page-gap) * 0.5) var(--page-gap-reduced);

  }

  .hero-minimal {

    gap: var(--page-gap-reduced);

    padding: var(--page-gap) var(--page-gap-reduced);

  }

  .hero-title {

    font-size: 1.52rem;

  }

  .hero-cta-btn {

    width: 100%;

    justify-content: center;

    padding: 0.9em 0;

    font-size: 1rem;

  }

}

/* LINKS */
.links-wrapper {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}





.links-block-niche101-title {

  font-size: 2.2rem;

  font-weight: 700;

  color: var(--accent);

  margin-bottom: 2.2rem;

  letter-spacing: -0.01em;

}



.links-block-niche101-list {

  display: flex;

  flex-wrap: wrap;

  gap: 2rem;

  justify-content: flex-start;

}





.links-block-niche101-list li {

  display: block;

  width: calc((100% - 4rem) / 3);

  min-width: 220px;

  max-width: 340px;

  margin: 0;

  padding: 0;

  list-style: none;

  box-sizing: border-box;

}



.links-block-niche101-list a {

  display: flex;

  align-items: center;

  gap: 1.1em;

  padding: 1.5em 2em;

  background: var(--light);

  color: var(--accent);

  border-radius: var(--radius);

  font-size: 1.14rem;

  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 2px 12px -6px var(--shadow);

  border: 1.5px solid transparent;

  transition: 

    box-shadow var(--transition),

    background var(--transition),

    border-color var(--transition),

    transform var(--transition);

  position: relative;

  overflow: hidden;

}

.links-block-niche101-list a::before {

  content: '';

  display: inline-block;

  width: 1.8em;

  height: 1.8em;

  margin-right: 0.65em;

  background: var(--accent);

  mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10 2a8 8 0 018 8v5a2 2 0 01-2 2h-2a2 2 0 01-2-2v-1H8v1a2 2 0 01-2 2H4a2 2 0 01-2-2v-5a8 8 0 018-8zm0 2C6.134 4 3 7.134 3 11v5a.5.5 0 00.5.5H6a.5.5 0 00.5-.5v-2.5A1.5 1.5 0 018 12h4a1.5 1.5 0 011.5 1.5V16a.5.5 0 00.5.5h2.5a.5.5 0 00.5-.5v-5c0-3.866-3.134-7-7-7z"/></svg>') center / contain no-repeat;

}





.links-block-niche101-list a:hover,

.links-block-niche101-list a:focus {

  background: var(--accent-transparent, rgba(74,44,255,0.12));

  color: var(--primary);

  box-shadow: 0 6px 24px -8px var(--shadow);

  border-color: var(--accent);

  transform: translateY(-2px) scale(1.025);

}









@media (max-width: 1023px) {

  .links-block-niche101-list li {

    width: calc((100% - 2rem) / 2);

  }

}





@media (max-width: 768px) {

  .links-block-niche101-list {

    gap: 1.2rem;

  }

  .links-block-niche101-list li {

    width: 100%;

    min-width: 0;

    max-width: 100%;

  }

  .links-block-niche101-list a {

    font-size: 1.07rem;

    padding: 1.2em 1.25em;

  }

}





.links-block-niche101-list,

.links-wrapper {

  overflow-x: hidden;

  box-sizing: border-box;

}

/* FOOTER */
.footer-block-soul372 {

  background: var(--header);

  padding: var(--page-gap) 0;

  overflow-x: hidden;

  box-shadow: 0 2px 8px 0 var(--shadow);

}



.footer-soul372-grid {

  display: grid;

  grid-template-rows: auto auto;

  justify-items: center;

  align-items: center;

  max-width: 100%;

  row-gap: var(--page-gap-reduced);

  text-align: center;

}



.footer-soul372-logo {

  display: block;

  margin: 0 auto;

  max-width: 120px;

  height: auto;

}



.footer-soul372-copy {

  color: var(--accent);

  font-size: 1rem;

  margin-top: var(--page-gap-reduced);

  margin-bottom: var(--page-gap-reduced);

  transition: color var(--transition);

}



.footer-soul372-line {

  border-top: 1px solid var(--accent-transparent);

  width: 100%;

  margin: 0 auto;

}



@media (max-width: 600px) {

  .footer-block-soul372 {

    padding: var(--page-gap);

  }

  .footer-soul372-copy {

    font-size: 0.95rem;

    padding-left: 8px;

    padding-right: 8px;

  }

}

/* BODY */
.content-block-blur92 {

  width: 100%;

  box-sizing: border-box;

  padding: var(--section-gap) 0;

  background: var(--background);

  overflow-x: hidden;

}



.content-wrapper-blend92 {

  max-width: 1120px;

  margin: 0 auto;

  display: flex;

  align-items: stretch;

  justify-content: space-between;

  gap: 48px;

  box-sizing: border-box;

  padding: 0 var(--page-gap);

}



.text-content--spark92 {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

}



.text-content--spark92 .text-content {

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.6;

  margin-bottom: 36px;

  font-feature-settings: "pnum" on, "lnum" on;

}



.text-content--spark92 .text-content h2,

.text-content--spark92 .text-content h3 {

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 18px;

  margin-top: 0;

  line-height: 1.18;

  letter-spacing: -0.01em;

}



.text-content--spark92 .text-content h3 {

  font-size: 1.15em;

}



.text-content--spark92 .text-content p {

  margin: 0 0 20px 0;

  color: var(--dark);

}



.text-content--spark92 .text-content ul,

.text-content--spark92 .text-content ol {

  padding-left: 24px;

  margin-bottom: 20px;

  color: var(--dark-muted);

  font-size: 1rem;

  line-height: 1.5;

}



.text-content--spark92 .text-content ul {

  list-style: disc;

}



.text-content--spark92 .text-content ol {

  list-style: decimal;

}



.text-content--spark92 .text-content li {

  margin-bottom: 8px;

}



.text-content--spark92 .text-content b,

.text-content--spark92 .text-content strong {

  color: var(--accent);

  font-weight: 700;

}



.text-content--spark92 .text-content i,

.text-content--spark92 .text-content em {

  color: var(--primary-hover);

  font-style: italic;

}



.text-content--spark92 .text-content a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.18s cubic-bezier(0.39,0,0.17,0.99);

}

.text-content--spark92 .text-content a:hover,

.text-content--spark92 .text-content a:focus {

  color: var(--primary-hover);

}



.text-content--spark92 .text-content table {

  width: 100%;

  border-collapse: collapse;

  font-size: 0.98em;

  margin-bottom: 18px;

  overflow-x: auto;

  display: block;

}

.text-content--spark92 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--spark92 .text-content th,

.text-content--spark92 .text-content td {

  padding: 8px 12px;

  border: 1px solid var(--dark-muted);

}

.text-content--spark92 .text-content th {

  color: var(--accent);

  font-weight: 600;

  text-align: left;

}

.text-content--spark92 .text-content td {

  color: var(--dark-default);

}



.cta-button--soft92.button {

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  font-weight: 600;

  font-size: 1.05em;

  display: inline-block;

  cursor: pointer;

  border: none;

  outline: none;

  max-width: max-content;

  transition: 

    background 0.18s cubic-bezier(0.39,0,0.17,0.99),

    box-shadow 0.18s, 

    transform 0.16s;

  text-decoration: none;

  margin-top: 6px;

  letter-spacing: 0.01em;

}

.cta-button--soft92.button:hover,

.cta-button--soft92.button:focus-visible {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.03);

  box-shadow: 0 4px 16px rgba(149,24,48,0.10);

}



.content-image--flare92 {

  flex: 0 0 320px;

  max-width: 320px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  min-width: 0;

}

.content-image--flare92 img,

.content-image--flare92 { 

  width: 320px;

  height: 480px;

  object-fit: cover;

  border-radius: 20px;

  box-shadow: var(--shadow);

  background: var(--light);

  

  backdrop-filter: blur(0.5px);

  -webkit-backdrop-filter: blur(0.5px);

  

  position: relative;

  z-index: 1;

}





@media (max-width: 1024px) {

  .content-wrapper-blend92 {

    gap: 28px;

    padding: 0 var(--page-gap-reduced);

  }

  .content-image--flare92 {

    max-width: 240px;

    flex-basis: 220px;

  }

  .content-image--flare92 img,

  .content-image--flare92 {

    width: 220px;

    height: 330px;

  }

}



@media (max-width: 768px) {

  .content-wrapper-blend92 {

    flex-direction: column-reverse;

    align-items: stretch;

    gap: 26px;

  }

  .content-image--flare92 {

    align-items: flex-start;

    justify-content: center;

    max-width: none;

    flex-basis: auto;

    margin-bottom: 14px;

  }

  .content-image--flare92 img,

  .content-image--flare92 {

    width: 100%;

    height: auto;

    min-width: 0;

    max-width: 100%;

    aspect-ratio: 2/3;

    border-radius: 16px;

  }

  .text-content--spark92 {

    margin: 0;

  }

  .cta-button--soft92.button {

    width: auto;

    min-width: 120px;

    font-size: 1em;

  }

}





.content-block-blur92, .content-wrapper-blend92, .text-content--spark92, .content-image--flare92 {

  max-width: 100%;

  box-sizing: border-box;

}







body {

  overflow-x: hidden;

}

*/

/* BODY1 */
.content-block-infocard527 {

  background: var(--light);

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.15));

  box-shadow: var(--shadow), 0 6px 40px 0 rgba(10,0,93,0.06);

  border-radius: var(--radius);

  padding: var(--section-gap);

  max-width: 720px;

  margin: var(--section-gap) auto;

  box-sizing: border-box;

  overflow-x: hidden;

  transition: box-shadow 0.25s cubic-bezier(0.39,0,0.17,0.99), border 0.22s var(--transition);

  backdrop-filter: blur(0.5px);

  display: flex;

  flex-direction: column;

  gap: 0;

}



.content-wrapper-infocard527 {

  width: 100%;

  max-width: 100%;

  display: flex;

  flex-direction: column;

  box-sizing: border-box;

}



.text-content-infocard527 {

  color: var(--dark-default);

  font-size: 1.08rem;

  line-height: 1.65;

  letter-spacing: 0;

  font-weight: 400;

  max-width: 100%;

  padding: 0;

  margin: 0;

  box-sizing: border-box;

}



.text-content-infocard527 h2,

.text-content-infocard527 h3 {

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 1.1em;

  margin-top: 0;

  line-height: 1.18;

  letter-spacing: -0.012em;

}



.text-content-infocard527 h2 {

  font-size: 2rem;

}



.text-content-infocard527 h3 {

  font-size: 1.25rem;

  margin-top: 1.5em;

}



.text-content-infocard527 p {

  margin: 1.45em 0 1.55em 0;

}



.text-content-infocard527 ul,

.text-content-infocard527 ol {

  margin: 1em 0 1.5em 1.6em;

  padding: 0;

  list-style-position: outside;

  color: var(--dark-muted);

  font-size: 1em;

  line-height: 1.4;

}



.text-content-infocard527 ul {

  list-style-type: disc;

}



.text-content-infocard527 ol {

  list-style-type: decimal;

}



.text-content-infocard527 li {

  margin: 0.18em 0 0.18em 0;

  padding: 0;

}



.text-content-infocard527 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.22s var(--transition);

  word-break: break-all;

}

.text-content-infocard527 a:hover,

.text-content-infocard527 a:focus {

  color: var(--accent-hover);

  text-decoration: none;

}



.text-content-infocard527 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0 1.5em 0;

  overflow-x: auto;

  display: block;

}



.text-content-infocard527 thead {

  background: var(--accent-transparent);

}



.text-content-infocard527 th,

.text-content-infocard527 td {

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.18));

  padding: 0.6em 1em;

  text-align: left;

  color: var(--dark-default);

  font-size: 0.98em;

}



.text-content-infocard527 th {

  font-weight: 600;

  color: var(--accent);

}



.text-content-infocard527 b, .text-content-infocard527 strong {

  font-weight: 600;

  color: var(--primary);

}

.text-content-infocard527 i, .text-content-infocard527 em {

  font-style: italic;

}



@media (max-width: 1024px) {

  .content-block-infocard527 {

    padding: calc(var(--section-gap) * 0.7);

    max-width: 96vw;

  }

  .text-content-infocard527 h2 {

    font-size: 1.5rem;

  }

}



@media (max-width: 768px) {

  .content-block-infocard527 {

    padding: calc(var(--section-gap) * 0.55);

    margin: var(--page-gap-reduced) auto;

    max-width: 99vw;

    border-radius: calc(var(--radius) * 1.5);

    box-shadow: 0 2px 16px rgba(10,0,93,0.10);

  }

  .text-content-infocard527 {

    font-size: 0.97rem;

  }

  .text-content-infocard527 h2 {

    font-size: 1.13rem;

    margin-bottom: .85em;

  }

}





.content-block-infocard527, .text-content-infocard527, .content-wrapper-infocard527 {

  min-width: 0;

  max-width: 100vw;

}

/* BODY2 */
.content-block-visualRight-flex62 {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 48px 0;

  overflow-x: hidden;

  max-width: 100%;

}



.content-wrapper-blend62 {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 56px;

  max-width: 1160px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 0 32px;

}



.text-content--spark62 {

  flex: 1 1 0%;

  max-width: 480px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 32px;

  min-width: 0;

}



.text-content--spark62 .text-content {

  color: var(--dark);

  font-family: inherit;

  line-height: 1.55;

  font-size: 1.12rem;

  letter-spacing: 0.01em;

  display: flex;

  flex-direction: column;

  gap: 20px;

}





.text-content--spark62 .text-content h2,

.text-content--spark62 .text-content h3 {

  color: var(--primary);

  font-weight: 700;

  letter-spacing: -0.01em;

  margin-bottom: 0.6em;

  line-height: 1.18;

}

.text-content--spark62 .text-content h2 {

  font-size: 2rem;

}

.text-content--spark62 .text-content h3 {

  font-size: 1.37rem;

}





.text-content--spark62 .text-content ul,

.text-content--spark62 .text-content ol {

  margin-left: 1.2em;

  padding-left: 0.4em;

  color: var(--dark-muted);

  font-size: 1em;

  gap: 0.5em;

  display: flex;

  flex-direction: column;

}

.text-content--spark62 .text-content li {

  margin-bottom: 0.4em;

  position: relative;

  line-height: 1.6;

}

.text-content--spark62 .text-content ul li::marker {

  color: var(--accent);

}

.text-content--spark62 .text-content ol li {

  color: var(--primary);

}





.text-content--spark62 .text-content a {

  color: var(--accent);

  text-decoration: underline dotted;

  transition: color 0.22s;

}

.text-content--spark62 .text-content a:hover,

.text-content--spark62 .text-content a:focus {

  color: var(--accent-hover);

  outline: none;

}





.text-content--spark62 .text-content table {

  width: 100%;

  border-collapse: collapse;

  background: var(--light);

  font-size: 0.97em;

  box-shadow: 0 1px 4px rgba(10,0,93,0.05);

  border-radius: var(--radius);

  overflow-x: auto;

  margin: 12px 0;

  display: block;

}

.text-content--spark62 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--spark62 .text-content th,

.text-content--spark62 .text-content td {

  padding: 8px 13px;

  border: 1px solid var(--accent-transparent);

  text-align: left;

  color: var(--dark);

}

.text-content--spark62 .text-content th {

  font-weight: 600;

}





.text-content--spark62 .text-content b, 

.text-content--spark62 .text-content strong {

  color: var(--primary);

  font-weight: 600;

}

.text-content--spark62 .text-content i, 

.text-content--spark62 .text-content em {

  color: var(--dark-muted);

}





.cta-button--soft62.button {

  display: inline-block;

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  font-weight: 600;

  font-size: 1.04rem;

  box-shadow: 0 3px 16px 0 rgba(149,24,48,0.12);

  cursor: pointer;

  outline: none;

  transition: var(--transition), box-shadow 0.1s;

  margin-top: 12px;

  max-width: max-content;

  min-width: 120px;

  letter-spacing: 0.01em;

  position: relative;

}

.cta-button--soft62.button:hover,

.cta-button--soft62.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.015);

  box-shadow: 0 6px 24px 0 rgba(149,24,48,0.22);

}





.content-image--flare62 {

  flex: 1 1 0%;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  height: 100%;

  position: relative;

  z-index: 1;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: 0 2px 24px var(--accent-transparent);

  backdrop-filter: blur(0.5px);

  

}



.content-image--flare62 > * {

  display: block;

  max-width: 100%;

  width: 100%;

  border-radius: var(--radius);

  object-fit: cover;

  min-height: 240px;

  box-shadow: none;

}





@media (max-width: 1024px) {

  .content-wrapper-blend62 {

    gap: 32px;

    padding: 0 14px;

  }

  .text-content--spark62 {

    max-width: 420px;

    gap: 22px;

  }

}

@media (max-width: 768px) {

  .content-wrapper-blend62 {

    flex-direction: column;

    gap: 26px;

    align-items: stretch;

    padding: 0 10px;

  }

  .text-content--spark62,

  .content-image--flare62 {

    max-width: 100%;

    width: 100%;

  }

  .content-image--flare62 {

    margin-top: 8px;

    margin-bottom: 0;

  }

  .content-image--flare62 > * {

    min-height: 180px;

    max-height: 340px;

  }

}



@media (max-width: 480px) {

  .content-block-visualRight-flex62 {

    padding: 20px 0;

  }

  .text-content--spark62 {

    gap: 14px;

  }

  .cta-button--soft62.button {

    font-size: 0.98rem;

    padding: 11px 16px;

    min-width: 90px;

  }

  .content-image--flare62 > * {

    min-height: 120px;

    max-height: 220px;

  }

}





.content-block-visualRight-flex62, .content-wrapper-blend62, .text-content--spark62, .content-image--flare62, .text-content--spark62 .text-content, .cta-button--soft62.button {

  box-sizing: border-box;

}

/* BODY3 */
.content-block-flare18 {

  box-sizing: border-box;

  position: relative;

  z-index: 1;

  overflow-x: hidden;

  width: 100%;

  padding: var(--section-gap) 0;

  background: linear-gradient(120deg, var(--accent-transparent) 0%, var(--light) 100%);

  box-shadow: var(--shadow);

}



.content-wrapper-spark218 {

  display: flex;

  justify-content: space-between;

  align-items: stretch;

  gap: 40px;

  max-width: 1160px;

  margin: 0 auto;

  padding: 32px 24px;

  box-sizing: border-box;

}



.text-content--blend721 {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

  max-width: 54%;

}



.text-content--blend721 .text-content {

  font-family: inherit;

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.65;

  margin-bottom: 40px;

  word-break: break-word;

}

.text-content--blend721 .text-content h2,

.text-content--blend721 .text-content h3 {

  color: var(--primary);

  margin: 0 0 16px 0;

  line-height: 1.2;

  font-weight: 700;

}

.text-content--blend721 .text-content h2 { font-size: 2.1rem; }

.text-content--blend721 .text-content h3 { font-size: 1.3rem; }

.text-content--blend721 .text-content p { margin-bottom: 16px; color: var(--dark-default);}

.text-content--blend721 .text-content ul, 

.text-content--blend721 .text-content ol {

  margin-bottom: 20px;

  padding-left: 1.2em;

}

.text-content--blend721 .text-content ul li,

.text-content--blend721 .text-content ol li {

  margin-bottom: 8px;

  font-size: inherit;

  color: var(--dark);

}

.text-content--blend721 .text-content ul li::marker {

  color: var(--accent);

}

.text-content--blend721 .text-content ol li::marker {

  color: var(--primary);

}

.text-content--blend721 .text-content a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--blend721 .text-content a:hover {

  color: var(--primary-hover);

}

.text-content--blend721 .text-content table {

  width: 100%;

  border-collapse: collapse;

  font-size: 1rem;

  margin-bottom: 20px;

  overflow-x: auto;

  display: block;

}

.text-content--blend721 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--blend721 .text-content td, 

.text-content--blend721 .text-content th {

  border: 1px solid var(--accent-secondary);

  padding: 8px 12px;

  text-align: left;

  color: var(--dark);

}

.text-content--blend721 .text-content th {

  color: var(--accent);

  font-weight: 700;

  background: var(--light);

}

.text-content--blend721 .text-content b { font-weight: bold; color: var(--primary); }

.text-content--blend721 .text-content i { font-style: italic; color: var(--accent); }



.cta-button--soft81 {

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 38px;

  border-radius: var(--radius);

  font-size: 1.07rem;

  font-weight: 600;

  box-shadow: 0px 6px 24px rgba(10,0,93,0.09), var(--shadow);

  outline: none;

  border: none;

  cursor: pointer;

  text-decoration: none;

  letter-spacing: 0.02em;

  transition: background 0.23s var(--transition), 

              color 0.18s var(--transition), 

              box-shadow 0.23s var(--transition), 

              transform 0.2s;

  will-change: transform;

}

.cta-button--soft81:hover, .cta-button--soft81:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0px 12px 28px rgba(10,0,93,0.16), var(--shadow);

}



.content-image--flare98 {

  flex: 0 0 auto;

  display: flex;

  align-items: center;

  min-width: 0;

  position: relative;

  max-width: 340px;

  width: 340px;

}

.image-border-svg-container-flare659 {

  position: relative;

  width: 340px;

  height: 500px;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: center;

}

.image-border-svg-flare659 {

  position: absolute;

  top: 0;

  left: 0;

  width: 340px;

  height: 500px;

  pointer-events: none;

  z-index: 2;

}

.image-inner-flare98 {

  position: absolute;

  top: 15px;

  left: 15px;

  width: 310px;

  height: 470px;

  overflow: hidden;

  z-index: 1;

  border-radius: 18px;

  box-shadow: 0 12px 32px rgba(10,0,93,0.11), var(--shadow);

  backdrop-filter: blur(2px);

  background: var(--light);

  display: flex;

  align-items: center;

  justify-content: center;

}

.image-inner-flare98 img {

  max-width: 100%;

  max-height: 100%;

  display: block;

  object-fit: cover;

  border-radius: 18px;

}





@media (max-width: 1024px) {

  .content-wrapper-spark218 {

    flex-direction: column;

    padding: 24px 10px;

    gap: 32px;

    align-items: stretch;

  }

  .text-content--blend721 {

    max-width: 100%;

    width: 100%;

    align-items: flex-start;

    margin-bottom: 0;

  }

  .content-image--flare98 {

    max-width: 340px;

    margin: 0 auto;

    width: 100%;

  }

  .image-border-svg-container-flare659 {

    width: 95vw;

    max-width: 340px;

    height: 70vw;

    max-height: 500px;

  }

  .image-border-svg-flare659,

  .image-inner-flare98 {

    width: 100% !important;

    height: 100% !important;

  }

}



@media (max-width: 768px) {

  .content-wrapper-spark218 {

    gap: 22px;

    padding: 14px 2vw;

  }

  .image-border-svg-container-flare659 {

    width: 88vw;

    max-width: 320px;

    height: 52vw;

    max-height: 400px;

  }

  .image-inner-flare98 {

    border-radius: 14px;

  }

}

@media (max-width: 480px) {

  .content-wrapper-spark218 {

    padding: 10px 1vw;

    gap: 12px;

  }

  .image-border-svg-container-flare659 {

    width: 98vw;

    height: 57vw;

    max-width: 320px;

    max-height: 320px;

  }

  .image-inner-flare98 {

    border-radius: 12px;

  }

  .text-content--blend721 .text-content h2 { font-size: 1.21rem; }

  .cta-button--soft81 {

    padding: 12px 18px;

    font-size: 1rem;

  }

}





.text-content--blend721 .text-content table {

  width: 100%;

  display: block;

  overflow-x: auto;

}

/* BODY4 */
.content-block-clip66 {

  width: 100%;

  box-sizing: border-box;

  padding: var(--section-gap) 0;

  background: var(--light);

  overflow-x: hidden;

}



.content-wrapper-triangle66 {

  display: flex;

  align-items: flex-start;

  gap: var(--page-gap);

  max-width: 1200px;

  margin: 0 auto;

  box-sizing: border-box;

}



.content-image--flare66 {

  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;

}

.content-image--flare66:hover,

.content-image--flare66:focus-within {

  box-shadow: 0 12px 48px rgba(10,0,93,0.22);

  transform: translateY(-4px) scale(1.022);

}



.content-image--flare66 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;

}



.text-content--spark66 {

  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;

}



.text-content {

  color: var(--dark);

  font-size: 1.12rem;

  line-height: 1.7;

  font-weight: 400;

  box-sizing: border-box;

}



.text-content h2,

.text-content h3 {

  margin: 0 0 0.6em 0;

  color: var(--accent);

  font-family: inherit;

  font-weight: 700;

  line-height: 1.16;

}

.text-content h2 { font-size: 2.2rem; }

.text-content h3 { font-size: 1.35rem; }



.text-content p {

  margin: 0 0 1em 0;

  color: var(--dark-default, #222);

}

.text-content ul,

.text-content ol {

  margin: 0 0 1.1em 1.2em;

  padding: 0;

}

.text-content ul li,

.text-content ol li {

  margin-bottom: 0.5em;

  color: var(--dark-muted);

  font-size: 1rem;

  position: relative;

}

.text-content ul li::marker { color: var(--primary); }

.text-content ol li::marker { color: var(--accent); }



.text-content b,

.text-content strong { font-weight: 700; color: var(--dark); }

.text-content i,

.text-content em { font-style: italic; color: var(--accent); }



.text-content a {

  color: var(--primary);

  text-decoration: underline;

  transition: color .22s var(--transition);

}

.text-content a:hover { color: var(--primary-hover); }



.text-content 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;

}

.text-content th,

.text-content td {

  border: 1px solid var(--accent-secondary, #ABA1FB);

  padding: 0.66em 1em;

  text-align: left;

  color: var(--dark);

  background: rgba(255,255,255,.99);

}

.text-content th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 600;

}

.text-content tr:nth-child(even) td {

  background: var(--background);

}



.cta-button--soft66.button {

  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;

}



.cta-button--soft66.button:hover,

.cta-button--soft66.button: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) {

  .content-block-clip66 { padding: var(--page-gap) 0; }

  .content-wrapper-triangle66 {

    gap: var(--page-gap-reduced);

  }

  .content-image--flare66 { flex-basis: 240px; max-width: 240px;}

}



@media (max-width: 768px) {

  .content-block-clip66 { padding: var(--page-gap-reduced) 0; }

  .content-wrapper-triangle66 {

    flex-direction: column;

    align-items: stretch;

    gap: var(--page-gap-reduced);

    max-width: 98vw;

    width: 100%;

  }

  .content-image--flare66 {

    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%);

  }

  .text-content--spark66 {

    padding: 0;

    gap: var(--page-gap-reduced);

  }

  .cta-button--soft66.button {

    font-size: 1rem;

    padding: 12px 22px;

  }

  .text-content table,

  .text-content thead,

  .text-content tbody,

  .text-content tr,

  .text-content th,

  .text-content td {

    font-size: 0.95rem;

    word-break: break-word;

  }

}



@media (max-width: 480px) {

  .content-wrapper-triangle66 { max-width: 100vw; }

  .content-image--flare66 { aspect-ratio: 1/1.195; }

}



*,

*:before,

*:after {

  box-sizing: inherit;

}

/* BODY5 */
.content-block-reverse28 {

  width: 100%;

  max-width: 100vw;

  box-sizing: border-box;

  overflow-x: hidden;

  background: var(--light);

  padding: calc(var(--section-gap) * 1.5) 0;

}



.content-wrapper-blend28 {

  display: grid;

  grid-template-rows: auto minmax(0, 1fr);

  place-items: center;

  max-width: 960px;

  margin: 0 auto;

  row-gap: 32px;

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 40px 32px 0 32px;

  transition: box-shadow 0.35s var(--transition), transform 0.4s var(--transition);

  animation: fadeIn28 1.15s cubic-bezier(0.44,0,0.36,1) 0s 1 backwards;

}



@keyframes fadeIn28 {

  0% {

    opacity: 0;

    transform: translateY(40px) scale(0.98);

  }

  100% {

    opacity: 1;

    transform: translateY(0) scale(1);

  }

}



.text-content--spark28 {

  width: 100%;

  max-width: 580px;

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.7;

  z-index: 2;

  padding-bottom: 12px;

  

}



.text-content--spark28 h2,

.text-content--spark28 h3 {

  color: var(--primary);

  margin-bottom: 18px;

  margin-top: 0;

  font-weight: 700;

  line-height: 1.2;

}



.text-content--spark28 h2 {

  font-size: 2.1rem;

}

.text-content--spark28 h3 {

  font-size: 1.35rem;

}



.text-content--spark28 p {

  margin: 0 0 18px 0;

}



.text-content--spark28 ul,

.text-content--spark28 ol {

  margin: 0 0 18px 20px;

  padding: 0 0 0 16px;

  color: var(--dark-muted);

  font-size: 1rem;

}



.text-content--spark28 li {

  margin-bottom: 10px;

  

  position: relative;

}

.text-content--spark28 ul>li::before {

  content: '';

  background: var(--accent);

  border-radius: 50%;

  width: 7px;

  height: 7px;

  display: inline-block;

  margin-right: 10px;

  vertical-align: middle;

  box-shadow: 0 1px 6px var(--accent-transparent);

}



.text-content--spark28 a {

  color: var(--accent);

  font-weight: 600;

  text-decoration: underline;

  transition: color 0.20s var(--transition);

}

.text-content--spark28 a:hover, .text-content--spark28 a:focus {

  color: var(--primary);

  text-decoration: none;

}



.text-content--spark28 table {

  width: 100%;

  border-collapse: collapse;

  margin: 20px 0;

  font-size: 0.98rem;

  overflow-x: auto;

  display: block;

}



.text-content--spark28 thead {

  background: var(--accent-transparent);

}

.text-content--spark28 th, .text-content--spark28 td {

  border: 1px solid var(--dark-muted);

  padding: 9px 12px;

  text-align: left;

}

.text-content--spark28 th {

  font-weight: 700;

  color: var(--accent);

}

.text-content--spark28 td {

  color: var(--dark-default);

}



.cta-button--soft28.button {

  background: var(--primary);

  color: var(--light);

  padding: 14px 36px;

  border: none;

  border-radius: var(--radius);

  font-size: 1.08rem;

  font-weight: 600;

  display: inline-block;

  box-shadow: 0 4px 18px rgba(149, 24, 48, 0.08), 0 1.5px 4px rgba(0,0,0, .07);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.21s var(--transition);

  margin-top: 23px;

  letter-spacing: 0.01em;

  cursor: pointer;

  min-width: 130px;

  text-align: center;

  position: relative;

  outline: none;

  will-change: transform, box-shadow;

}



.cta-button--soft28.button:hover,

.cta-button--soft28.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 6px 24px rgba(252, 101, 131, 0.16), 0 2px 12px var(--accent-transparent);

  transform: translateY(-2px) scale(1.025);

}



.content-image--flare28 {

  width: 100%;

  display: flex;

  justify-content: center;

  align-items: end;

  padding: 0 0 16px 0;

  

  margin: 0 auto;

}



.content-image--flare28 img,

.content-image--flare28 > * {

  width: 100%;

  max-width: 1024px;

  height: auto;

  box-shadow: 0 6px 36px var(--accent-transparent), 0 2px 10px rgba(0,0,0, .06);

  border-radius: 18px;

  border: 2.5px solid var(--accent-secondary, var(--accent));

  transition: box-shadow 0.30s var(--transition), border-color 0.23s;

  background: var(--light);

  

  backdrop-filter: blur(0.5px);

  object-fit: cover;

  display: block;

}



@media (max-width: 1200px) {

  .content-wrapper-blend28 {

    max-width: 100vw;

    padding-left: 5vw;

    padding-right: 5vw;

  }

  .content-image--flare28 img,

  .content-image--flare28 > * {

    max-width: 90vw;

  }

}



@media (max-width: 768px) {

  .content-wrapper-blend28 {

    padding: 32px 7vw 0 7vw;

    row-gap: 21px;

    box-shadow: none;

  }

  .text-content--spark28 {

    max-width: 100%;

    font-size: 1rem;

    padding-bottom: 7px;

  }

  .cta-button--soft28.button {

    padding: 11px 24px;

    font-size: 1rem;

    margin-top: 16px;

    min-width: 110px;

  }

  .content-image--flare28 img,

  .content-image--flare28 > * {

    border-radius: 11px;

    max-width: 96vw;

  }

}



@media (max-width: 480px) {

  .content-wrapper-blend28 {

    padding: 20px 1vw 0 1vw;

    border-radius: 0;

    row-gap: 16px;

  }

  .content-block-reverse28 {

    padding: 23px 0;

  }

  .content-image--flare28 img,

  .content-image--flare28 > * {

    border-radius: 6px;

    border-width: 1px;

    max-width: 99vw;

  }

}

/* BODY6 */
.content-block-heroTop90 {

  width: 100%;

  box-sizing: border-box;

  background: var(--light);

  padding: var(--section-gap);

  display: flex;

  justify-content: center;

  align-items: stretch;

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  overflow-x: hidden;

}

.content-wrapper-glossy990 {

  max-width: 920px;

  width: 100%;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: calc(var(--section-gap) * 0.8);

  align-items: center;

}





.content-image--flare198 {

  width: 100%;

  border-radius: var(--radius) var(--radius) 0 0;

  overflow: hidden;

  box-shadow: 0 2px 16px rgba(10, 0, 93, 0.10);

  backdrop-filter: blur(0.5px);

  margin-bottom: var(--page-gap-reduced);

}

.content-image--flare198 img {

  display: block;

  width: 100%;

  height: auto;

  object-fit: cover;

  border-radius: var(--radius) var(--radius) 0 0;

}





.cta-row-soft520 {

  width: 100%;

  display: flex;

  justify-content: center;

  margin-bottom: var(--page-gap-reduced);

}

.cta-button--soft194 {

  background: var(--primary);

  color: var(--light);

  padding: 14px 32px;

  border-radius: var(--radius);

  font-size: 1.08rem;

  font-weight: 600;

  display: inline-block;

  box-shadow: 0 2px 10px rgba(149, 24, 48, 0.16);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.18s cubic-bezier(0.23,0.82,0.47,0.96);

  cursor: pointer;

  outline: none;

  border: none;

  min-width: max-content;

  letter-spacing: 0.02em;

  position: relative;

}

.cta-button--soft194:hover, .cta-button--soft194:focus {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.02);

  box-shadow: 0 8px 24px rgba(149,24,48,0.17);

}

.cta-button--soft194:active {

  transform: scale(0.98);

}





.text-content--spark761 {

  width: 100%;

  color: var(--dark);

  font-size: 1.1rem;

  line-height: 1.6;

  display: block;

  padding: 0 var(--page-gap);

  box-sizing: border-box;

}





.text-content--spark761 h2,

.text-content--spark761 h3 {

  font-weight: 700;

  color: var(--accent);

  margin-top: 0.65em;

  margin-bottom: 0.2em;

  letter-spacing: 0.01em;

  line-height: 1.2;

}



.text-content--spark761 h2 {

  font-size: 2rem;

}

.text-content--spark761 h3 {

  font-size: 1.35rem;

}





.text-content--spark761 p {

  margin: 0.65em 0 0.85em;

  color: var(--dark-default);

}



.text-content--spark761 ul,

.text-content--spark761 ol {

  padding-left: 1.4em;

  margin: 0.25em 0 1em;

}

.text-content--spark761 ul {

  list-style: disc inside;

}

.text-content--spark761 ol {

  list-style: decimal inside;

}

.text-content--spark761 li {

  margin: 0.3em 0;

  color: var(--dark);

}





.text-content--spark761 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.18s cubic-bezier(0.39,0,0.17,0.99);

  word-break: break-word;

}

.text-content--spark761 a:hover,

.text-content--spark761 a:focus {

  color: var(--accent);

}





.text-content--spark761 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  margin: var(--page-gap-reduced) 0;

  font-size: 1rem;

  background: var(--accent-transparent);

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content--spark761 thead {

  background: var(--accent-secondary);

}

.text-content--spark761 th,

.text-content--spark761 td {

  border: 1px solid var(--accent);

  padding: 0.55em 1em;

  text-align: left;

  color: var(--dark);

}

.text-content--spark761 th {

  font-weight: 600;

  color: var(--dark);

}





.text-content--spark761 td ul,

.text-content--spark761 td ol {

  margin: 0.15em 0;

  padding-left: 1.3em;

}





.text-content--spark761 b, 

.text-content--spark761 strong {

  font-weight: 700;

  color: var(--accent);

}

.text-content--spark761 i, 

.text-content--spark761 em {

  font-style: italic;

}





@media (max-width: 1024px) {

  .content-wrapper-glossy990 {

    max-width: 98vw;

    padding: 0;

  }

  .text-content--spark761 {

    font-size: 1rem;

    padding-left: var(--page-gap-reduced);

    padding-right: var(--page-gap-reduced);

  }

}

@media (max-width: 768px) {

  .content-block-heroTop90 {

    padding: var(--page-gap);

    border-radius: var(--radius);

  }

  .content-wrapper-glossy990 {

    max-width: 100vw;

    padding: 0;

    gap: var(--page-gap);

  }

  .content-image--flare198 {

    margin-bottom: var(--page-gap);

    border-radius: var(--radius);

  }

  .text-content--spark761 {

    padding: 0 var(--page-gap-reduced);

    font-size: 0.98rem;

  }

}

@media (max-width: 480px) {

  .content-block-heroTop90 {

    padding: var(--page-gap-reduced);

    border-radius: var(--radius);

  }

  .content-wrapper-glossy990 {

    gap: var(--page-gap-reduced);

  }

  .cta-row-soft520 {

    margin-bottom: var(--page-gap-reduced);

  }

  .cta-button--soft194 {

    padding: 12px 18px;

    font-size: 1rem;

  }

  .text-content--spark761 {

    padding: 0 4vw;

    font-size: 0.97rem;

  }

  .content-image--flare198 {

    border-radius: var(--radius);

  }

}

/* BODY7 */
.content-block-art62 {

  box-sizing: border-box;

  width: 100%;

  overflow-x: hidden;

  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 65%, var(--accent-secondary) 100%);

  position: relative;

  padding: var(--section-gap) 0;

}



.content-wrapper-art62 {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: 48px;

  position: relative;

  z-index: 1;

  box-sizing: border-box;

  padding: 0 var(--page-gap);

}



.content-image--flare62 {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  width: 100%;

  aspect-ratio: 16/10;

}



.content-image--flare62 > :not(.image-mask-art62):not(.grain-overlay-art62) {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  object-fit: cover;

  z-index: 0;

  border-radius: 0 0 120px 0 / 0 0 80px 0;

  

}



.image-mask-art62 {

  position: absolute;

  top: 0; left: 0;

  width: 100%; height: 100%;

  pointer-events: none;

  z-index: 2;

  

  clip-path: path('M0,0 H100% V80% Q60% 100% 0,80% Z');

  background: rgba(0,0,0,0.08);

  backdrop-filter: blur(0.5px);

  border-bottom-left-radius: 150px 60px;

}



@supports (clip-path: ellipse(50% 50% at 50% 50%)) {

  .image-mask-art62 {

    clip-path: ellipse(92% 60% at 60% 60%);

    background: rgba(0,0,0,0.03);

  }

}



.grain-overlay-art62 {

  content: '';

  position: absolute;

  top: 0; left: 0;

  width: 100%; height: 100%;

  z-index: 3;

  pointer-events: none;

  opacity: 0.35;

  mix-blend-mode: soft-light;

  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA...'); 

  background-size: 340px 340px;

  background-repeat: repeat;

  border-radius: inherit;

}



.text-content--spark62 {

  text-align: right;

  color: var(--light);

  z-index: 2;

  display: flex;

  flex-direction: column;

  gap: 32px;

  align-items: flex-end;

  justify-content: center;

}



.text-content--spark62 .text-content {

  font-family: 'Montserrat', 'Arial', sans-serif;

  font-size: 1.14rem;

  line-height: 1.68;

  letter-spacing: 0.01em;

  max-width: 470px;

  width: 100%;

  word-break: break-word;

  background: var(--accent-transparent);

  box-shadow: var(--shadow);

  padding: 40px 32px 30px 32px;

  border-radius: 0 32px 0 48px;

  backdrop-filter: blur(0.5px);

}



.text-content--spark62 .text-content h2,

.text-content--spark62 .text-content h3 {

  color: var(--light);

  margin-top: 0;

  font-family: 'Montserrat', 'Arial', sans-serif;

  font-weight: 700;

  margin-bottom: 18px;

}



.text-content--spark62 .text-content h3 {

  font-size: 1.28rem;

}



.text-content--spark62 .text-content p {

  margin-bottom: 16px;

  color: var(--light);

  font-size: 1.07rem;

}



.text-content--spark62 .text-content ul,

.text-content--spark62 .text-content ol {

  margin: 12px 0 18px 0;

  padding-left: 1.4em;

  color: var(--accent-secondary);

  font-size: 1rem;

}



.text-content--spark62 .text-content ul li::marker {

  color: var(--primary-hover);

}



.text-content--spark62 .text-content ol li::marker {

  color: var(--accent-secondary);

  font-weight: bold;

}



.text-content--spark62 .text-content li {

  margin-bottom: 6px;

  line-height: 1.6;

}



.text-content--spark62 .text-content a {

  color: var(--accent-secondary);

  text-decoration: underline;

  transition: color var(--transition);

  font-weight: 600;

}



.text-content--spark62 .text-content a:hover, 

.text-content--spark62 .text-content a:focus {

  color: var(--primary-hover);

}



.text-content--spark62 .text-content table {

  width: 100%;

  overflow-x: auto;

  border-collapse: separate;

  border-spacing: 0;

  margin-top: 18px;

  background: rgba(255,255,255,0.04);

  border-radius: 8px;

  box-shadow: var(--shadow);

}



.text-content--spark62 .text-content th,

.text-content--spark62 .text-content td {

  padding: 10px 16px;

  border-bottom: 1px solid var(--accent-secondary);

  color: var(--light);

  text-align: right;

}



.text-content--spark62 .text-content th {

  font-weight: 700;

}



.text-content--spark62 .text-content td:last-child,

.text-content--spark62 .text-content th:last-child {

  

  border-right: none;

}



.cta-button--soft62 {

  background: var(--primary);

  color: var(--light);

  font-weight: 700;

  font-size: 1.08rem;

  border: none;

  border-radius: var(--radius);

  padding: 14px 32px 14px 22px;

  box-shadow: 0 3px 16px -4px var(--accent-secondary), var(--shadow);

  display: inline-flex;

  align-items: center;

  gap: 10px;

  cursor: pointer;

  transition: var(--transition);

  outline: none;

  text-decoration: none;

  margin-top: 18px;

  position: relative;

  will-change: filter, box-shadow, transform;

  overflow: hidden;

}



.cta-button--soft62 .cta-icon-art62 {

  font-size: 1.22em;

  display: flex;

  align-items: center;

}



.cta-button--soft62:hover, .cta-button--soft62:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 6px 36px 0 var(--accent-transparent), 0 2px 8px var(--primary-hover), var(--shadow);

  filter: brightness(1.08) drop-shadow(0 0 14px var(--primary-hover));

  transform: translateY(-2px) scale(1.03);

}



.cta-button--soft62:active {

  transform: scale(0.97) translateY(1px);

  filter: brightness(0.97);

}





@media (max-width: 1024px) {

  .content-wrapper-art62 {

    grid-template-columns: 1fr;

    gap: 32px;

    padding: 0 var(--page-gap-reduced);

  }

  .text-content--spark62 {

    align-items: flex-end;

  }

  .content-image--flare62 {

    aspect-ratio: unset;

    min-height: 240px;

  }

}



@media (max-width: 768px) {

  .content-wrapper-art62 {

    grid-template-columns: 1fr;

    gap: 24px;

    padding: 0 var(--page-gap-reduced);

  }

  .content-image--flare62 {

    order: -1;

    width: 100%;

    min-width: 0;

    aspect-ratio: unset;

    min-height: 190px;

  }

  .image-mask-art62 {

    border-bottom-left-radius: 80px 28px;

  }

  .text-content--spark62 {

    align-items: flex-end;

    padding: 0;

    gap: 22px;

  }

  .text-content--spark62 .text-content {

    font-size: 1.01rem;

    padding: 26px 14px 18px 14px;

    border-radius: 0 18px 0 22px;

    box-shadow: var(--shadow);

    width: 100%;

    min-width: 0;

    max-width: 95vw;

  }

}



@media (max-width: 480px) {

  .text-content--spark62 .text-content, .content-wrapper-art62 {

    padding: 0 2vw;

  }

  .cta-button--soft62 {

    padding: 12px 18px 12px 8px;

    font-size: 0.96rem;

  }

}



body {

  overflow-x: hidden;

}

/* dating-advice/blogpreview4.css */
.heroh1-holocloud552 {

  width: 100%;

  max-width: 1100px;

  margin: 0 auto var(--section-gap);

  position: relative;

  background: linear-gradient(120deg, var(--background) 0%, var(--light) 110%);

  box-shadow: 0 7px 37px var(--shadow);

  border-radius: 2.1em;

  padding: 3.1rem 1.2rem 2.2rem 1.2rem;

  text-align: center;

  overflow: hidden;

  z-index: 1;

}





.heroh1-holocloud552 .heroh1-decorcloud-holocloud552 {

  position: absolute;

  left: 50%; top: 0;

  width: 400px; height: 230px;

  transform: translateX(-53%);

  background:

    radial-gradient(ellipse 70% 60% at 70% 30%, var(--primary) 33%, transparent 100%),

    radial-gradient(ellipse 40% 22% at 21% 80%, var(--accent-secondary, #ABA1FB) 70%, transparent 100%),

    radial-gradient(ellipse 88% 70% at 80% 80%, var(--accent) 70%, transparent 100%);

  opacity: 0.18;

  filter: blur(28px) saturate(1.11) brightness(1.05);

  pointer-events: none;

  z-index: 0;

  animation: cloudmove552 10s infinite alternate cubic-bezier(.53,0,.22,1);

}

@keyframes cloudmove552 {

  from { filter: blur(24px) saturate(1.16);}

  to   { filter: blur(33px) saturate(1.25);}

}





.heroh1-holocloud552 .heroh1-title-holocloud552 {

  font-size: var(--font-size-h1);

  font-weight: 900;

  letter-spacing: -0.01em;

  line-height: 1.12;

  margin: 0;

  padding: 0.18em 0.12em;

  color: #fff;

  background: linear-gradient(90deg, var(--primary) 10%, var(--accent) 60%, var(--accent-secondary, #ABA1FB) 89%, #fff 100%);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  filter: drop-shadow(0 9px 22px var(--primary) ) drop-shadow(0 2px 14px var(--accent-secondary, #ABA1FB));

  transition: filter .18s, text-shadow .18s;

  text-shadow:

    0 2.5px 15px var(--accent),

    0 10px 20px #fff7;

  position: relative;

  z-index: 2;

  word-break: break-word;

  word-wrap: break-word;

  white-space: normal;

  animation: holofade552 .85s cubic-bezier(.39,1.51,.17,1.02) both;

}

@keyframes holofade552 {

  from { opacity: 0; transform: translateY(38px) scale(.97);}

  to   { opacity: 1; transform: none;}

}





.heroh1-holocloud552 .heroh1-title-holocloud552::before {

  content: '';

  position: absolute;

  left: 38%; top: 50%;

  width: 151px; height: 39px;

  background: linear-gradient(

    115deg,

    transparent,

    #fff 60%,

    transparent 100%

  );

  opacity: .16;

  pointer-events: none;

  filter: blur(5.5px);

  border-radius: 100px 70px 110px 80px / 80px 120px 95px 70px;

  z-index: 3;

  animation: shimmerho552 2.9s infinite linear alternate;

}

@keyframes shimmerho552 {

  0% { left: 15%; opacity: .05;}

  60% { left: 53%; opacity: .19;}

  100% { left: 85%; opacity: .13;}

}





.heroh1-holocloud552 .heroh1-glowbar-holocloud552 {

  width: 102px; height: 6px;

  margin: 2vw auto 0 auto;

  border-radius: 7px;

  background: linear-gradient(90deg, var(--primary) 15%, var(--accent) 65%, var(--accent-secondary, #ABA1FB) 100%);

  box-shadow: 0 2px 18px var(--primary), 0 0 16px var(--accent-secondary, #ABA1FB);

  position: relative;

  opacity: 0.86;

  animation: glowclipbar552 2.2s cubic-bezier(.81,.3,.12,1.29) both;

  transition: background .14s;

}

@keyframes glowclipbar552 {

  from { opacity: 0; width: 14px;}

  75%  { opacity: 1; width: 120px; }

  to   { width: 102px; opacity: 0.86; }

}





@media (max-width: 700px) {

  .heroh1-holocloud552 { max-width: 99vw; padding: 2rem 0.2rem 1.45rem 0.2rem; border-radius: 1.15em;}

  .heroh1-holocloud552 .heroh1-title-holocloud552 { font-size: var(--font-size-h2);}

  .heroh1-holocloud552 .heroh1-glowbar-holocloud552 { width: 51px; height: 2.3px; }

  .heroh1-holocloud552 .heroh1-title-holocloud552::before { width: 80px; height: 17px;}

  .heroh1-holocloud552 .heroh1-decorcloud-holocloud552 { width: 190px; height: 120px; }

}

@media (max-width: 400px) {

  .heroh1-holocloud552 { padding: .66rem 0.05rem .61rem 0.05rem;}

  .heroh1-holocloud552 .heroh1-title-holocloud552 { font-size: var(--font-size-h3);}

  .heroh1-holocloud552 .heroh1-glowbar-holocloud552 { width: 24vw; }

}

/* dating-advice/blogindex5.css */
.blobblog-melting82 {

  width: 100%;

  box-sizing: border-box;

  padding-top: 2.7rem;

  background: none;

}



.blobblog-title-melting82 {

  font-size: 2.16rem;

  font-weight: 900;

  letter-spacing: -0.017em;

  text-align: center;

  background: linear-gradient(95deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB) 80%);

  color: transparent;

  -webkit-background-clip: text;

  background-clip: text;

  margin: 46px 0 38px 0;

  position: relative;

  line-height: 1.12;

}

.blobblog-title-melting82::after {

  content: '';

  display: block;

  margin: 1.1em auto 0 auto;

  width: 65px;

  height: 6px;

  background: linear-gradient(93deg, var(--accent) 0%, var(--primary) 90%);

  border-radius: 12px;

  opacity: .42;

}



.blobblog-melting82 .blobblog-grid-melting82 {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));

  gap: 2.32rem 1.3rem;

  max-width: 1210px;

  margin: 0 auto 1.9rem auto;

  width: 100%;

  box-sizing: border-box;

}



.blobblog-melting82 .category-card {

  display: flex;

  flex-direction: column;

  border-radius: 32px;

  background: var(--light);

  box-shadow: 0 14px 38px -13px var(--shadow), 0 2.5px 12px var(--accent-transparent);

  position: relative;

  min-width: 0;

  overflow: visible;

  z-index: 1;

  transition: box-shadow .26s var(--transition), transform .17s var(--transition);

}





.blobblog-melting82 .category-card::before {

  content: '';

  position: absolute;

  left: 32px; top: 48px;

  width: 148px; height: 105px;

  background: radial-gradient(85% 82% at 31% 50%, var(--primary) 42%, var(--accent) 140%);

  opacity: 0.28;

  z-index: 0;

  filter: blur(0.5px);

  border-radius: 46% 78% 48% 49%/60% 41% 63% 52%;

  transition: opacity .33s var(--transition), transform .27s var(--transition);

  pointer-events: none;

}

.blobblog-melting82 .category-card:hover::before,

.blobblog-melting82 .category-card:focus-within::before {

  opacity: 0.49;

  transform: scale(1.22) translateY(-12px) rotate(-6deg);

  filter: blur(1.4px);

}





.blobblog-melting82 .category-card img {

  width: 100%;

  height: 182px;

  object-fit: cover;

  border-radius: 32px 32px 0 0;

  filter: grayscale(8%) brightness(.99) contrast(1.07);

  transition: filter .17s, box-shadow .14s;

  display: block;

  position: relative;

  z-index: 2;

  box-shadow: 0 4px 13px 0 var(--accent-transparent);

}

.blobblog-melting82 .category-card:hover img,

.blobblog-melting82 .category-card:focus-within img {

  filter: none;

  box-shadow: 0 8px 28px 0 var(--primary-hover);

}





.blobblog-melting82 .category-card .category-info {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 0.35em;

  background: rgba(255,255,255,0.89);

  border-radius: 0 0 32px 32px;

  min-height: 86px;

  box-sizing: border-box;

  text-align: left;

  -webkit-backdrop-filter: blur(3.5px);

  backdrop-filter: blur(3.5px);

  z-index: 3;

  padding: 0.84em 1.25em 1.18em 1.61em;

  position: relative;

  overflow: visible;

}





.blobblog-melting82 .category-card .category-info .category-rating {

  position: absolute;

  left: 0; top: 21px;

  width: 11px;

  height: 37%;

  background: linear-gradient(188deg, var(--accent), var(--primary) 97%);

  border-radius: 18px;

  opacity: 0.81;

  box-shadow: 0 0 14px 2.5px var(--accent-transparent);

  z-index: 5;

  transition: height .28s, opacity .14s;

}

.blobblog-melting82 .category-card:hover .category-info .category-rating,

.blobblog-melting82 .category-card:focus-within .category-info .category-rating {

  height: 45%;

  opacity: 1;

}





.blobblog-melting82 .category-card .category-info .category-title {

  color: var(--primary);

  font-size: 1.19rem;

  font-weight: 900;

  margin: 0 0 0.21em 0;

  letter-spacing: 0.008em;

  position: relative;

  z-index: 7;

  padding-left: 0.3em;

}

.blobblog-melting82 .category-card .category-info .category-title::after {

  content: "";

  position: absolute;

  left: 0; bottom: -0.31em;

  width: 24px;

  height: 4px;

  border-radius: 2px;

  background: var(--accent);

  opacity: 0.14;

}





.blobblog-melting82 .category-card .category-info .category-btn {

  display: inline-block;

  padding: 0.67em 1.05em;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  color: var(--light);

  font-weight: 700;

  font-size: 1.03rem;

  border-radius: 21px;

  box-shadow: 0 2px 6px 0 var(--primary-hover);

  text-decoration: none;

  transition: background .14s, color .11s, box-shadow .11s, opacity .09s, transform .14s;

  border: none;

  cursor: pointer;

  margin-top: 8px;

}



.blobblog-melting82 .category-card .category-info .category-btn:hover,

.blobblog-melting82 .category-card .category-info .category-btn:focus {

  background: var(--accent);

  color: var(--light);

  box-shadow: 0 6px 14px 0 var(--primary-hover);

}





@media (max-width: 900px) {

  .blobblog-title-melting82 { font-size: 1.14rem; margin-bottom: 19px;}

  .blobblog-melting82 .blobblog-grid-melting82 {

    grid-template-columns: 1fr 1fr;

    gap: 1.07rem 0.63rem;

    padding-left: 2vw; padding-right: 2vw;

  }

  .blobblog-melting82 .category-card img { height: 200px; border-radius: 18px 18px 0 0;}

  .blobblog-melting82 .category-card { border-radius: 18px; }

  .blobblog-melting82 .category-card .category-info {

    min-height: 50px;

    padding: .53em 0.6em .63em 0.89em;

    border-radius: 0 0 18px 18px;

  }

  .blobblog-melting82 .category-card .category-info .category-title {

    font-size: .91rem;

  }

  .blobblog-melting82 .category-card .category-info .category-rating {

    width: 6px; left: 0; top: 12px;

  }

}



@media (max-width: 600px) {

  .blobblog-melting82 { padding: 8px 0 0 0;}

  .blobblog-title-melting82 { font-size: 0.95rem; margin: 8px 0 7px 0;}

  .blobblog-title-melting82::after { margin: .53em auto 0 auto; width: 23px; height: 2.2px; }

  .blobblog-melting82 .blobblog-grid-melting82 {

    grid-template-columns: 1fr;

    gap: 0.61rem 0;

    max-width: 99vw;

    padding-left: 1vw;

    padding-right: 1vw;

  }

  .blobblog-melting82 .category-card { border-radius: 7px;}

  .blobblog-melting82 .category-card img { height: 200px; border-radius: 7px 7px 0 0;}

  .blobblog-melting82 .category-card .category-info {

    min-height: 11px;

    padding: .13em .19em .17em .25em;

    border-radius: 0 0 7px 7px;

  }

  .blobblog-melting82 .category-card .category-info .category-title {

    font-size: .67rem;

    margin-bottom: .093em;

  }

  .blobblog-melting82 .category-card .category-info .category-rating {

    width: 3.5px; height: 18%; top: 6px;

  }

  .blobblog-melting82 .category-card::before {

    left: 12px; top: 22px; width: 59px; height: 33px;

  }

}

/* dating-advice/reviewtableofcontent.css */
.sidebar-rew {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 20px;

    margin: 0 0 20px 0; 

  

}



.sidebar-rew h3 {

  font-size: var(--font-size-h2);

  font-weight: var(--font-weight-heading);

  margin-bottom: 15px;

  color: var(--dark);

}



.sidebar-rew ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



.sidebar-rew ul li {

  margin-bottom: 10px;

  border-radius: var(--radius);

  transition: var(--transition);

}



.sidebar-rew ul li a {

  display: block;

  padding: 10px 15px;

  background: var(--light);

  color: var(--dark);

  text-decoration: none;

  font-size: var(--font-size-base);

  font-weight: var(--font-weight-body);

  border-radius: var(--radius);

  box-shadow: 0 1px 3px rgba(0,0,0,0.08);

  transition: var(--transition);

}



.sidebar-rew ul li a:hover {

  background: var(--accent-transparent);

  color: var(--dark);

}



@media (max-width: 768px) {

  .sidebar-rew {

    order: -1; 

    margin-bottom: 20px;

  }

}

/* dating-advice/bloglink5.css */
.linksmod-grideta102 {

  width: 100%;

  max-width: 366px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  border-radius: 24px;

  background: var(--background);

  box-shadow: 0 2.5px 26px 0 rgba(80,70,180,0.06);

  padding-top: 12px;

}



.linksmod-grideta102 .linksmod-title-grideta102 {

  font-size: 1.19rem;

  font-weight: 800;

  color: var(--primary);

  margin-bottom: 0.9em;

  letter-spacing: -0.01em;

  text-align: center;

  position: relative;

  padding-bottom: 0.41em;

}



.linksmod-grideta102 .linksmod-title-grideta102::after {

  content: '';

  display: block;

  margin: 0.48em auto 0 auto;

  width: 44px; height: 4.5px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .44;

}

.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image:hover {

    background: none;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 {

  display: grid;

  grid-template-columns: 1fr;

  gap: 22px 16px;

  padding: 0 14px 17px 14px;

  box-sizing: border-box;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 {

  display: contents;

}





.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a {

  display: flex;

  flex-direction: column;

  align-items: center;

  border-radius: 16px;

  background: var(--light);

  box-shadow:

      0 2.5px 16px 0 rgba(90,60,160,0.07),

      0 0 0 1.5px var(--accent-transparent);

  position: relative;

  min-height: 150px;

  padding: 23px 7px 18px 7px;

  text-decoration: none;

  color: var(--dark);

  transition: box-shadow .29s var(--transition), transform .28s var(--transition), background .17s;

  overflow: visible;

  isolation: isolate;

  will-change: transform;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:hover,

.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:focus {

  background: var(--accent-transparent);

  box-shadow:

      0 9px 34px 0 rgba(80,40,170,0.12),

      0 0 0 3px var(--primary-hover);

  transform: translateY(-3px) scale(1.025);

}





.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image img {

  width: 62px;

  height: 62px;

  border-radius: 50%;

  object-fit: cover;

  object-position: center;

  background: linear-gradient(120deg, var(--primary) 60%, var(--accent) 100%);

  border: 3.5px solid;

  border-image: linear-gradient(120deg, var(--primary) 60%, var(--accent)) 1;

  box-shadow:

      0 2.5px 12px 0 var(--accent-transparent),

      0 0 0 7px var(--light);

  margin-bottom: 15px;

  transition: border-color .32s var(--transition), box-shadow .21s var(--transition);

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:hover img,

.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:focus img {

  border-color: var(--primary);

  box-shadow: 0 6px 20px 0 var(--accent-transparent), 0 0 0 10px var(--accent-secondary, #ABA1FB);

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a {

  font-size: 1.07rem;

  font-weight: 700;

  letter-spacing: 0.01em;

  line-height: 1.27;

  text-align: center;

  position: relative;

  min-height: 45px;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a::after {

  content: '';

  display: block;

  width: 19px;

  height: 3px;

  background: var(--primary);

  border-radius: 2.5px;

  opacity: 0.15;

  margin: 7px auto 0 auto;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:focus-visible {

  outline: 2.2px solid var(--accent);

  box-shadow: 0 0 0 6px var(--primary-hover);

}





@media (max-width: 600px) {

  .linksmod-grideta102 {

    max-width: 99vw;

    border-radius: 13px;

    padding-top: 7px;

  }

  .linksmod-grideta102 .linksmod-wrap-grideta102 {

    grid-template-columns: 1fr;

    gap: 21px 0;

    padding-left: 6px; padding-right: 6px;

  }

  .linksmod-grideta102 .linksmod-title-grideta102 {

    font-size: 1rem;

    padding-bottom: 0.22em;

  }

}

/* dating-advice/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* dating-advice/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* dating-advice/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* dating-advice/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* dating-advice/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* dating-advice/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* dating-advice/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* dating-advice/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* dating-advice/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}