/* 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: color11 */
:root {
    --primary: #6a0dad;
    --primary-hover: #7e2ac1;
    --accent: #ffcc00;
    --accent-hover: #ffd633;
    --accent-secondary: #ffe066;
    --accent-transparent: rgba(255, 204, 0, 0.3);
    --background: #f3e5f5;
    --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 */
body {

  box-sizing: border-box;

  margin: 0;

  overflow-x: hidden;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

}

*,

*::before,

*::after {

  box-sizing: inherit;

}

.premium-header {

  width: 100%;

  z-index: 100;

  position: relative;

  box-shadow: var(--shadow);

  background: var(--header);

}

.ph-container {

  max-width: 1200px;

  margin: 0 auto;

  padding: calc(var(--page-gap) / 1.5) var(--page-gap);

  display: flex;

  align-items: center;

  justify-content: space-between;

  min-width: 0;

  flex-wrap: wrap;

}

.ph-logo img {

  display: block;

}



.ph-nav {

  display: flex;

  align-items: center;

}

.ph-menu {

  display: flex;

  gap: calc(var(--page-gap) * 0.8);

  margin: 0;

  padding: 0;

  list-style: none;

  transition: var(--transition);

}

.ph-menu li a {

  color: var(--accent);

  font-weight: 500;

  padding: 8px 18px;

  border-radius: var(--radius);

  font-size: 1rem;

  text-decoration: none;

  letter-spacing: 0.02em;

  transition: color 0.18s, background 0.20s, transform 0.25s var(--transition);

  position: relative;

}



.ph-menu li a:hover,

.ph-menu li a:focus-visible {

  background: var(--accent-transparent);

  color: var(--primary);

  text-decoration: none;

  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);

  transform: scale(1.06);

}



.ph-burger {

  display: none;

  flex-direction: column;

  justify-content: center;

  background: none;

  border: 0;

  padding: 10px 0 10px 18px;

  margin-left: 12px;

  cursor: pointer;

  z-index: 21;

}

.ph-burger span {

  display: block;

  width: 26px;

  height: 3px;

  margin: 4px 0;

  border-radius: 3px;

  background: var(--primary);

  transition: var(--transition);

}

.ph-burger.active span:nth-child(1) {

  transform: rotate(45deg) translate(5px, 6px);

}

.ph-burger.active span:nth-child(2) {

  opacity: 0;

}

.ph-burger.active span:nth-child(3) {

  transform: rotate(-45deg) translate(5px, -6px);

}





.premium-hero {

  background:

    linear-gradient(120deg, var(--accent-secondary) 0%, var(--accent-transparent) 100%);

  position: relative;

  padding: calc(var(--section-gap) * 1.3) 0 calc(var(--section-gap) * 0.7) 0;

  overflow: hidden;

}

.ph-hero-content {

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 55%;

  gap: calc(var(--page-gap) * 2) var(--page-gap);

  align-items: center;

  padding-left: var(--page-gap);

  padding-right: var(--page-gap);

  min-width: 0;

}

.ph-hero-text-wrap {

  z-index: 3;

  display: flex;

  flex-direction: column;

  gap: 36px;

}

.ph-hero-title {

  font-size: clamp(2.1rem, 4vw, 3.4rem);

  font-weight: 800;

  color: var(--accent);

  margin: 0 0 6px 0;

  letter-spacing: -0.01em;

  line-height: 1.16;

  text-shadow: 0 3px 18px rgba(0,0,0,0.08);

}

.ph-cta {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  background: linear-gradient(95deg, var(--primary), var(--primary-hover));

  color: var(--light);

  border: none;

  border-radius: calc(var(--radius) * 2);

  padding: 14px 32px 14px 28px;

  font-weight: 600;

  font-size: 1.18rem;

  line-height: 1.1;

  box-shadow: 0 6px 24px -2px rgba(0,0,0,0.13);

  cursor: pointer;

  transition: 

    box-shadow 0.18s var(--transition),

    transform 0.21s var(--transition),

    background 0.20s,

    filter 0.21s;

  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);

  position: relative;

  isolation: isolate;

  will-change: transform, box-shadow;

  outline: none;

  user-select: none;

}

.ph-cta .ph-cta-icon {

  display: flex;

  align-items: center;

  color: var(--light);

  font-size: 1.34em;

  transition: color 0.16s;

}

.ph-cta:hover, .ph-cta:focus-visible {

  background: linear-gradient(95deg, var(--primary-hover), var(--primary));

  color: var(--light);

  box-shadow: 0 10px 32px -6px var(--shadow), 0 2px 8px 0 rgba(0,0,0,0.12);

  transform: scale(1.04) translateY(-2px);

  filter: brightness(1.03);

}

.ph-cta:active {

  transform: scale(0.98) translateY(2px);

  filter: brightness(0.97);

}



.ph-hero-img-wrap {

  display: flex;

  justify-content: flex-end;

  align-items: center;

  min-width: 0;

}

.ph-img-border {

  border-radius: calc(var(--radius) * 3);

  position: relative;

  overflow: hidden;

  box-shadow:

    0 8px 32px 0 rgba(0,0,0,0.13),

    0 1.5px 14px 0 var(--shadow);

  border: 4px solid var(--accent-secondary);

  background: linear-gradient(120deg, var(--accent-transparent), white 60%);

  aspect-ratio: 16/10;

  max-width: 510px;

  width: 100%;

}

.ph-img-border img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  filter: saturate(1.12);

  border-radius: inherit;

  z-index: 1;

  position: relative;

}

.ph-img-overlay {

  position: absolute;

  z-index: 2;

  inset: 0;

  pointer-events: none;

  background: linear-gradient(128deg, rgba(10,0,93,0.19) 6%, rgba(0,0,0,0.15) 90%);

  backdrop-filter: blur(0px) brightness(0.98);

  mix-blend-mode: multiply;

}





@media (max-width: 1024px) {

  .ph-hero-content {

    grid-template-columns: 1fr;

    gap: var(--section-gap) 0;

    place-items: center;

    text-align: center;

    padding-left: calc(var(--page-gap) / 2);

    padding-right: calc(var(--page-gap) / 2);

  }

  .ph-hero-img-wrap { justify-content: center; margin-top: var(--page-gap); }

}

@media (max-width: 820px) {

  .ph-menu {

    gap: 18px;

  }

  .ph-container {

    padding: calc(var(--page-gap) / 2) var(--page-gap-reduced);

  }

  .premium-hero {

    padding: calc(var(--section-gap) / 1.5) 0;

  }

}

@media (max-width: 768px) {

  .ph-container {

    flex-wrap: wrap;

  }

  .ph-menu {

    position: fixed;

    top: 60px;

    right: 0;

    width: 80vw;

    max-width: 340px;

    flex-direction: column;

    gap: 0;

    background: var(--header);

    box-shadow: 0 6px 32px -7px var(--shadow);

    border-top-left-radius: var(--radius);

    border-bottom-left-radius: var(--radius);

    padding: 28px 0 24px 0;

    z-index: 121;

    transform: translateX(110%);

    opacity: 0;

    pointer-events: none;

    transition: transform 0.32s var(--transition), opacity 0.22s;

  }

  .ph-menu.open {

    transform: translateX(0);

    opacity: 1;

    pointer-events: all;

  }

  .ph-menu li {

    text-align: left;

    margin: 10px 24px;

  }

  .ph-menu li a {

    display: block;

    padding: 14px 0;

    font-size: 1.05rem;

    border-radius: var(--radius);

  }

  .ph-burger {

    display: flex;

  }

  .ph-nav {

    align-items: center;

  }

}

@media (max-width: 540px) {

  .ph-hero-content,

  .ph-container {

    padding-left: var(--page-gap-reduced);

    padding-right: var(--page-gap-reduced);

  }

  .ph-hero-title {

    font-size: 1.42rem;

  }

  .ph-cta {

    width: 100%;

    justify-content: center;

    padding: 14px 0;

    font-size: 1rem;

  }

  .ph-img-border {

    max-width: 98vw;

    min-width: 0;

    border-width: 2.5px;

  }

}

/* FOOTER */
/* overlay */


.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
.site-popup-overlay.visible {
  display: flex !important;
  opacity: 1 !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
/* scrolling zone */
.site-popup-content{
  padding: 24px;
  overflow-y: auto;   
  overflow-x: hidden; 
}

/* close button */
.site-popup-close{
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  z-index: 10; 
}


@media (max-width: 600px) {
  .site-popup-panel{
    max-width: 100%;
    border-radius: 10px;
  }
  .site-popup-content{
    padding: 18px;
  }
}



.footer-block-elite937 {
  background: var(--header);
  text-align: center;
  box-shadow: var(--shadow);
  padding: var(--section-gap, 32px) 0;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-elite937-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-block-elite937 img { display: block; margin: 0 auto; }


.footer-links-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-popup-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.18s;
}

.footer-popup-btn:hover { color: var(--light); background: var(--accent); }

.footer-elite937-copyright {
  color: var(--dark);
  margin-top: var(--page-gap);
  opacity: 0;
  animation: elite937-fade-in 1s ease 0.2s forwards;
  font-size: 1rem;
  transition: opacity 0.3s var(--transition);
}

@keyframes elite937-fade-in { to { opacity: 1; } }

@media (max-width: 600px) {
  .footer-block-elite937 { padding: var(--page-gap) 0; }
  .footer-elite937-inner { padding: 0 var(--page-gap-reduced); }
  .footer-elite937-copyright { font-size: 0.95rem; }
}

.links-wrapper.links-block-popular21 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}



.links-block-popular21-title {

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 2rem;

  color: var(--dark);

  letter-spacing: -0.01em;

}



.links-block-popular21-list {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-wrap: wrap;

  gap: 20px 18px;

  justify-content: flex-start;

  

  max-width: 100%;

}





.links-block-popular21-list li {

  margin: 0;

  padding: 0;

}



.links-block-popular21-list a {

  display: inline-block;

  padding: 10px 26px;

  border-radius: var(--radius);

  background: var(--primary);

  color: var(--light);

  font-size: 1.05rem;

  font-weight: 500;

  text-decoration: none;

  box-shadow: 0 2px 18px 0 var(--shadow,rgba(0,0,0,0.09));

  transition: 

    background 0.22s var(--transition,cubic-bezier(0.4,0,0.2,1)), 

    box-shadow 0.22s var(--transition),

    transform 0.15s var(--transition);

  min-width: 110px;

  max-width: max-content;

  white-space: nowrap;

  vertical-align: middle;

  

  

}



.links-block-popular21-list a:hover,

.links-block-popular21-list a:focus {

  background: var(--accent);

  color: var(--light);

  box-shadow: 0 6px 24px 0 var(--shadow,rgba(0,0,0,0.16));

  transform: translateY(-3px) scale(1.04);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .links-wrapper.links-block-popular21 {

    padding: 32px 12px;

  }

  .links-block-popular21-title {

    font-size: 1.4rem;

    margin-bottom: 1.1rem;

  }

}



@media (max-width: 768px) {

  .links-block-popular21-list {

    flex-wrap: wrap;

    gap: 16px 12px;

    justify-content: flex-start;

  }

  .links-block-popular21-list a {

    display: block;

    width: 100%;

    min-width: unset;

    max-width: 100%;

    padding: 12px 7px;

    text-align: left;

    font-size: 1rem;

  }

}

/* BODY */
.content-block-table.premium480 {

  background: var(--light);

  box-sizing: border-box;

  border: 1.5px solid var(--accent-transparent, rgba(171,161,251,0.2));

  border-radius: 24px;

  box-shadow: 0 2px 16px 0 rgba(10,0,93,0.06), 0 1px 4px 0 var(--shadow);

  padding: 0;

  margin: var(--section-gap) auto;

  max-width: 800px;

  overflow: hidden;

  min-width: 0;

  transition: box-shadow 0.3s, border 0.25s;

  position: relative;

}

.content-block-table.premium480:before {

  content: "";

  display: block;

  position: absolute;

  inset: 0;

  pointer-events: none;

  border-radius: 24px;

  box-shadow: 0 2px 22px 0 rgba(10,0,93,0.08) inset;

  z-index: 0;

  backdrop-filter: blur(0.5px);

}



.content-wrapper-elevate480 {

  position: relative;

  z-index: 1;

  padding: 42px 48px 36px 48px;

  box-sizing: border-box;

  max-width: 100%;

}



.text-content.mono-table480 {

  font-family: inherit;

  font-size: 1.09rem;

  color: var(--dark);

  line-height: 1.62;

  letter-spacing: 0.01em;

}



.text-content.mono-table480 h2,

.text-content.mono-table480 h3 {

  margin: 0 0 18px 0;

  font-size: 2rem;

  font-weight: 700;

  color: var(--accent);

  line-height: 1.25;

  letter-spacing: -0.015em;

}

.text-content.mono-table480 h3 {

  font-size: 1.2rem;

  color: var(--dark-default);

}



.text-content.mono-table480 p {

  margin: 0 0 16px 0;

  color: var(--dark-default);

  font-size: 1.09rem;

}



.text-content.mono-table480 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content.mono-table480 a:hover,

.text-content.mono-table480 a:focus {

  color: var(--primary-hover);

  text-decoration: underline wavy;

}



.text-content.mono-table480 ul, 

.text-content.mono-table480 ol {

  margin: 0 0 18px 1.3em;

  padding: 0;

  font-size: 1.02rem;

}

.text-content.mono-table480 ul li,

.text-content.mono-table480 ol li {

  margin: 0 0 8px 0;

  padding-left: 0.8em;

  line-height: 1.6;

}

.text-content.mono-table480 ul li {

  list-style: disc inside;

}

.text-content.mono-table480 ol li {

  list-style: decimal inside;

}



.text-content.mono-table480 table {

  margin-top: 0.9em;

  margin-bottom: 0.9em;

  width: 100%;

  border-collapse: separate;

  border-spacing: 0;

  font-family: 'JetBrains Mono', 'Fira Mono', 'Menlo', 'Consolas', monospace;

  font-size: 1.06rem;

  background: rgba(171,161,251,0.07);

  border-radius: 12px;

  box-shadow: 0 1px 3px 0 rgba(151,24,48,0.03) inset;

  overflow-x: auto;

}

.text-content.mono-table480 th, 

.text-content.mono-table480 td {

  padding: 10px 16px;

  border-bottom: 1.5px solid var(--accent-transparent, #ABA1FB44);

  text-align: left;

  vertical-align: middle;

  font-size: 1.06rem;

}

.text-content.mono-table480 th {

  color: var(--primary);

  background: var(--light);

  font-weight: 600;

  letter-spacing: 0.04em;

}

.text-content.mono-table480 tr:last-child td {

  border-bottom: none;

}

.text-content.mono-table480 td {

  color: var(--dark);

  background: transparent;

}

.text-content.mono-table480 table {

  border-radius: 12px;

  overflow: hidden;

}

.text-content.mono-table480 table,

.text-content.mono-table480 thead,

.text-content.mono-table480 tbody {

  display: block;

  width: 100%;

}

.text-content.mono-table480 tr {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

  width: 100%;

}

.text-content.mono-table480 th,

.text-content.mono-table480 td {

  display: block;

  width: 100%;

  box-sizing: border-box;

  min-width: 0;

  word-break: break-word;

}





@media (max-width: 550px) {

  .content-wrapper-elevate480 {

    padding: 24px 8vw 20px 8vw;

  }

  .text-content.mono-table480 table,

  .text-content.mono-table480 thead,

  .text-content.mono-table480 tbody,

  .text-content.mono-table480 tr {

    display: block;

    width: 100%;

  }

  .text-content.mono-table480 th,

  .text-content.mono-table480 td {

    display: block;

    width: 100%;

    font-size: 0.99rem;

    padding: 8px 10px;

  }

}

@media (max-width: 768px) {

  .content-block-table.premium480 {

    margin: var(--page-gap-reduced) auto;

    border-radius: 18px;

    box-shadow: 0 1px 8px 0 rgba(10,0,93,0.08);

    padding: 0;

  }

  .content-wrapper-elevate480 {

    padding: 24px 5vw 18px 5vw;

  }

  .text-content.mono-table480 h2 {

    font-size: 1.3rem;

    margin-bottom: 14px;

  }

}

@media (max-width: 420px) {

  .content-block-table.premium480 {

    border-radius: 12px;

  }

  .content-wrapper-elevate480 {

    padding: 12px 2vw 10px 2vw;

  }

}





.content-block-table.premium480,

.content-wrapper-elevate480,

.text-content.mono-table480 {

  box-sizing: border-box;

  max-width: 100%;

  min-width: 0;

}

body, .content-block-table.premium480 {

  overflow-x: hidden;

}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}

/* DEFAULT/blogpreview7.css */
/* ======== PROFILE UNIT S88 ======== */
.profileunit_s88 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff7f2;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ffd6c4;
}

/* HEADER */
.s88_header {
  position: relative;
}

.s88_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #ff9472;
}

.s88_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s88_title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  background: rgba(255,144,94,0.7);
  padding: 12px 20px;
  border-radius: 14px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.s88_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.s88_desc {
  background: #fff0ea;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #ff9472;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.s88_specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.s88_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #ffd6c4;
}

.s88_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9472;
}

.s88_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.s88_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff9472,#ff622a);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.s88_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .s88_specs {
    grid-template-columns: 1fr;
  }
  .s88_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .s88_body {
    padding: 18px 22px 24px;
  }
  .s88_button {
    font-size: 1rem;
  }
}

@media(max-width: 480px) {
  .profileunit_s88 {
    margin: 0 12px 50px;
  }
}

body {
  overflow-x: hidden;
}

/* DEFAULT/blogindex.css */
.profiledeck-wrapperX52 {
  width: 100%;
  padding: 2.2rem 0;
  box-sizing: border-box;
}

.profiledeck-headingX52 {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(95deg, var(--primary), var(--accent));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.01em;
}

.profiledeck-gridX52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem 1.4rem;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1rem;
}


.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 26px -4px var(--shadow);
  transition: transform .23s ease, box-shadow .23s ease;
}

.profiledeck-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 38px -4px var(--primary-hover);
}


.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) contrast(1.07);
  transition: filter .2s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: brightness(1.05) contrast(1.1);
}


.profiledeck-body {
  padding: 1rem 1.25rem 1.4rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.44;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.1em;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 3px 12px var(--accent-transparent);
  transition: box-shadow .2s, background .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px var(--primary-hover);
}


.profiledeck-noimgX52 {
  padding: 1.4rem;
  background: var(--light);
  border-radius: 14px;
  box-shadow: 0 6px 22px -4px var(--shadow);
  text-align: center;
}

.profiledeck-noimgX52 a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}


@media (max-width: 900px) {
  .profiledeck-headingX52 {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.88rem;
  }
}
@media (max-width: 540px) {
  .profiledeck-gridX52 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink3.css */
.linksglass-epsilon91 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);





  position: relative;

  backdrop-filter: blur(7px);



  overflow: visible;

}



.linksglass-epsilon91::before {

  

  content: "";

  pointer-events: none;

  position: absolute;

  left: 12%; bottom: 8%;

  width: 58%;

  height: 28%;

  border-radius: 30px 99px 25px 110px;

  background: linear-gradient(120deg, var(--primary), var(--accent-secondary, #ABA1FB) 70%);

  filter: blur(24px);

  opacity: 0.25;

  z-index: 1;

}





.linksglass-epsilon91 .linksglass-title-epsilon91 {

  font-size: 1.17rem;

  font-weight: 800;

  color: var(--dark);

  margin: 1.07em 0 1.1em 0;

  letter-spacing: -0.015em;

  text-align: left;

  position: relative;

  padding-left: 3.7em;

}



.linksglass-epsilon91 .linksglass-title-epsilon91::before {

  content: "NEW";

  display: inline-block;

  color: var(--light);

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent));

  font-size: 0.78em;

  font-weight: 700;

  border-radius: 14px;

  margin-right: 0.63em;

  padding: 3.5px 13px 2.5px 12px;

  box-shadow: 0 1px 4px var(--accent);

  letter-spacing: 0.09em;

  opacity: .92;

  position: absolute;

  left: 0; top: 3px;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

  position: relative;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .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);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image:hover {

    background: none;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  display: flex;

  flex-direction: column;

  background: rgba(255,255,255,0.42);

  border-radius: 17px;

  overflow: hidden;

  position: relative;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  box-shadow: 0 2.5px 17px 0 rgba(77,34,180,0.08);

  border: 1.2px solid var(--accent-transparent, #baaefc);

  transition: box-shadow 0.29s var(--transition), transform 0.33s var(--transition), background .22s;

  padding: 0;

  z-index: 2;

  will-change: transform;

}



.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus {

  transform: translateY(-4px) scale(1.029);

  box-shadow: 0 10px 36px 0 var(--accent-transparent);

  background: rgba(245,245,255,0.74);

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

  width: 100%;

  height: 140px;

  object-fit: cover;

  display: block;

  border-radius: 17px 17px 0 0;

  filter: blur(0.2px) grayscale(9%) contrast(1.08);

  transition: filter 0.22s var(--transition);

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:hover img,

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus img {

  filter: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

  font-size: 1.07rem;

  line-height: 1.28;

  padding: 0.82em 1.17em 1.1em 1.17em;

  position: relative;

  z-index: 2;

  text-shadow: 0 1.5px 8px var(--accent-transparent);

  letter-spacing: 0.01em;

}

.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a::after {

  content: '';

  position: absolute;

  left: 50%; bottom: 13px;

  transform: translateX(-50%);

  width: 60px;

  height: 8px;

  border-radius: 8px;

  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB));

  opacity: 0.17;

  z-index: 1;

  pointer-events: none;

}





.linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a:focus-visible {

  outline: 2px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}





@media (max-width: 500px) {

  .linksglass-epsilon91 {

    max-width: 99vw;

    border-radius: 11px;

    font-size: 0.97rem;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image img {

    height: 86px;

    border-radius: 11px 11px 0 0;

  }

  .linksglass-epsilon91 .linksglass-wrap-epsilon91 .link-item-epsilon91 .with-image a {

    font-size: .95rem;

    padding: 0.60em 0.7em 0.78em 0.81em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91 {

    font-size: 1.02rem;

    margin: 0.53em 0 0.77em 0;

    padding-left: 3.51em;

  }

  .linksglass-epsilon91 .linksglass-title-epsilon91::before {

    padding: 2.5px 8.5px 1.5px 9.5px;

    font-size: 0.62em;

  }

}

/* DEFAULT/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);
  }
}