/* 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: color29 */
:root {
    --primary: #ba55d3;
    --primary-hover: #c670dc;
    --accent: #3cb371;
    --accent-hover: #57c089;
    --accent-secondary: #71cea1;
    --accent-transparent: rgba(60, 179, 113, 0.3);
    --background: #faf0e6;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
*,

*::before,

*::after {

  box-sizing: border-box;

}



body {

  overflow-x: hidden;

  background: var(--background);

  margin: 0;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  color: var(--dark);

  min-height: 100vh;

}





.header-minimal {

  width: 100%;

  padding: calc(var(--page-gap) / 1.5) 0;

  background: var(--header);

  box-shadow: var(--shadow);

}



.header-container {

  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;

  max-width: 100vw;
      padding-bottom: 20px;

}



.logo-link {

  display: inline-block;

  height: 40px;

  transition: transform .18s var(--transition);

}

.logo-link:focus,

.logo-link:hover {

  outline: none;

  transform: scale(1.03);

}



.hero-minimal {

  min-height: 89vh;

  min-height: calc(100dvh - 80px);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: calc(var(--section-gap) * 0.75);

  justify-content: center;

  padding: calc(var(--section-gap) * 1.5) var(--page-gap);

}



.hero-title {

  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 700;

  line-height: 1.08;

  color: var(--accent);

  letter-spacing: -0.04em;

  text-align: center;

  margin: 0;

  z-index: 2;

  transition: color .32s var(--transition);

}



.hero-image-container {

  position: relative;

  width: 320px;

  max-width: 90vw;

  aspect-ratio: 2/3;

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  box-shadow: 0 4px 40px rgba(0,0,0,0.12), var(--shadow);

  display: flex;

  align-items: stretch;

  justify-content: center;

  margin-bottom: 0;

  background: var(--accent-transparent);

}



.hero-image-container img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  min-height: 0;

}



.hero-image-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(164deg, rgba(0,0,0,0.13) 15%, rgba(0,0,0,0.27) 100%);

  backdrop-filter: blur(0px);

  z-index: 1;

  pointer-events: none;

  

  border-radius: inherit;

  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.10) inset;

}



.hero-cta {

  display: inline-block;

  margin: 0;

  margin-top: min(2vw, 34px);

  background: linear-gradient(94deg, var(--primary), var(--accent) 99%);

  color: var(--light);

  font-size: 1.23rem;

  font-weight: 600;

  letter-spacing: 0.01em;

  border: none;

  outline: none;

  border-radius: calc(var(--radius) * 1.6);

  padding: 0.95em 2.5em;

  text-decoration: none;

  box-shadow: 0 4px 16px rgba(0,0,0,0.07);

  cursor: pointer;

  min-width: 140px;

  text-align: center;

  line-height: 1.02;

  position: relative;

  z-index: 3;

  transition:

    background .28s var(--transition),

    color 0.32s var(--transition),

    box-shadow .28s var(--transition),

    transform .22s var(--transition);

  will-change: transform, background;

}



.hero-cta:hover, .hero-cta:focus-visible {

  background: linear-gradient(90deg, var(--primary-hover), var(--accent) 86%);

  color: var(--light);

  box-shadow: 0 8px 44px 0 rgba(0,0,0,0.10);

  transform: scale(1.035);

  outline: none;

}



@media (max-width: 1080px) {

  .hero-minimal {

    gap: var(--page-gap);

    padding: calc(var(--section-gap)) var(--page-gap-reduced);

  }

  .hero-image-container {

    width: 260px;

    max-width: 94vw;

  }

  .hero-title {

    font-size: clamp(1.45rem, 5vw, 2.3rem);

  }

}



@media (max-width: 600px) {

  .header-minimal {

    padding: var(--page-gap-reduced) 0;

  }

  .hero-minimal {

    padding: calc(var(--section-gap) * 0.7) var(--page-gap-reduced);

    gap: var(--page-gap-reduced);

    min-height: auto;

  }

  .hero-image-container {

    width: 94vw;

    min-width: 0;

    border-radius: calc(var(--radius) * 1.2);

  }

  .hero-title {

    font-size: 1.25rem;

  }

  .hero-cta {

    padding: 0.82em 1.55em;

    font-size: 1rem;

    min-width: 112px;

  }

}

/* 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-explore789 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap, 40px 24px);

}



.links-block-explore789-title {

  font-size: 2rem;

  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 32px;

  color: var(--accent, #8f66ff);

  letter-spacing: -0.02em;

}





.links-block-explore789-list {

  display: grid;

  grid-template-columns: repeat(2, minmax(220px, 1fr));

  gap: 24px;

  list-style: none;

  padding: 0;

  margin: 0;

}



.links-block-explore789-list li {

  margin: 0;

  padding: 0;

}





.links-block-explore789-list a {

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 14px 24px;

  background: rgba(var(--primary-rgb, 0,0,0), 0.04);

  border: 1.5px solid var(--accent-transparent, #ccc);

  border-radius: var(--radius, 14px);

  color: var(--primary, #24242c);

  font-weight: 500;

  font-size: 1.08rem;

  text-decoration: none;

  transition:

      background 0.22s var(--transition, ease),

      color 0.22s var(--transition, ease),

      border-color 0.2s var(--transition, ease),

      box-shadow 0.22s var(--transition, ease),

      transform 0.18s var(--transition, cubic-bezier(.25,.8,.25,1));

  box-shadow: 0 0 0 transparent;

  box-sizing: border-box;

  cursor: pointer;

  min-width: 0;

  position: relative;

}





.links-block-explore789-list a::before {

  content: "";

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 28px;

  height: 28px;

  margin-right: 16px;

  border-radius: 50%;

  background: var(--accent-transparent, rgba(140,100,255,0.13));

  

  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="7" fill="%238f66ff"/></svg>');

  background-repeat: no-repeat;

  background-position: center;

  background-size: 18px 18px;

  flex-shrink: 0;

  transition: background 0.22s var(--transition, ease), filter 0.22s var(--transition, ease);

}





.links-block-explore789-list a:hover,

.links-block-explore789-list a:focus-visible {

  background: var(--primary, #24242c);

  color: var(--light, #fff);

  border-color: var(--accent, #8f66ff);

  box-shadow: 0 6px 22px -8px var(--shadow, rgba(30,20,80,0.13));

  transform: translateY(-2px) scale(1.025);

}



.links-block-explore789-list a:hover::before,

.links-block-explore789-list a:focus-visible::before {

  background: var(--accent, #8f66ff);

  

  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="7" fill="white"/></svg>');

  filter: drop-shadow(0 2px 6px rgba(140,100,255,0.16));

}





@media (max-width: 900px) {

  .links-block-explore789-list {

    grid-template-columns: 1fr;

    gap: 18px;

  }

  .links-block-explore789-title {

    margin-bottom: 20px;

    font-size: 1.5rem;

  }

}



@media (max-width: 600px) {

  .links-wrapper.links-block-explore789 {

    padding: 24px 8px;

  }

  .links-block-explore789-list {

    grid-template-columns: 1fr;

    gap: 13px;

  }

  .links-block-explore789-list a {

    width: 100%;

    justify-content: center;

    font-size: 1rem;

    padding: 12px 14px;

  }

  .links-block-explore789-list a::before {

    margin-right: 10px;

  }

}

/* BODY */
.content-block-overlay39 {

  background: var(--accent-transparent);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  padding: 0;

  overflow-x: hidden;

  max-width: 100vw;

}



.content-wrapper-overlay39 {

  display: flex;

  align-items: stretch;

  gap: 40px;

  max-width: 1100px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 40px 32px;

}



.content-image--flare39 {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  position: relative;

}



.image-overlay--blend39 {

  position: relative;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: 0 4px 32px rgba(10, 0, 93, 0.09);

  min-width: 0;

  min-height: 0;

  display: flex;

}



.image-overlay--blend39::before {

  content: '';

  position: absolute;

  inset: 0;

  background: rgba(10, 0, 93, 0.16);

  pointer-events: none;

  backdrop-filter: blur(0.5px);

  z-index: 1;

  border-radius: var(--radius);

}



.image-overlay--blend39 img,

.image-overlay--blend39 > *:not(:first-child) {

  position: relative;

  z-index: 2;

  max-width: 320px;

  width: 100%;

  height: auto;

  aspect-ratio: 2/3;

  object-fit: cover;

  border-radius: var(--radius);

  display: block;

}



.text-content--spark39 {

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

  flex: 1 1 0%;

}



.text-content--spark39 .text-content {

  color: var(--dark);

  font-size: 1.16rem;

  line-height: 1.6;

  max-width: 650px;

  font-weight: 400;

  min-width: 0;

}

.text-content--spark39 .text-content h2,

.text-content--spark39 .text-content h3 {

  color: var(--primary);

  margin-bottom: 0.6em;

  font-weight: 700;

  line-height: 1.15;

}

.text-content--spark39 .text-content ul,

.text-content--spark39 .text-content ol {

  margin: 1.2em 0;

  padding-left: 1.4em;

}

.text-content--spark39 .text-content ul {

  list-style-type: disc;

}

.text-content--spark39 .text-content ol {

  list-style-type: decimal;

}

.text-content--spark39 .text-content li {

  margin-bottom: 0.5em;

  padding-left: 0.1em;

}

.text-content--spark39 .text-content a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

  font-weight: 500;

}

.text-content--spark39 .text-content a:hover {

  color: var(--accent-hover);

}

.text-content--spark39 .text-content table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  border-radius: var(--radius);

  margin: 1.2em 0;

  overflow-x: auto;

  box-shadow: 0 1px 6px rgba(0,0,0,0.07);

  background: var(--light);

}

.text-content--spark39 .text-content th,

.text-content--spark39 .text-content td {

  border: 1px solid var(--accent-secondary, #ABA1FB);

  padding: 0.75em 1em;

  text-align: left;

  font-size: 1em;

  color: var(--dark);

}

.text-content--spark39 .text-content th {

  background: var(--accent-transparent);

  font-weight: 600;

}

.text-content--spark39 .text-content tr:nth-child(even) td {

  background: #f6f6fb;

}

.text-content--spark39 .text-content b, 

.text-content--spark39 .text-content strong {

  font-weight: bold;

}

.text-content--spark39 .text-content i,

.text-content--spark39 .text-content em {

  font-style: italic;

}



@media (max-width: 1024px) {

  .content-wrapper-overlay39 {

    gap: 28px;

    padding: 32px 16px;

  }

  .image-overlay--blend39 img {

    max-width: 240px;

  }

  .text-content--spark39 .text-content {

    font-size: 1.08rem;

  }

}



@media (max-width: 768px) {

  .content-wrapper-overlay39 {

    flex-direction: column;

    gap: 24px;

    padding: 24px 8px;

    align-items: flex-start;

  }

  .content-image--flare39,

  .image-overlay--blend39 {

    width: 100%;

    max-width: 350px;

    margin: 0 auto;

  }

  .image-overlay--blend39 img {

    width: 100%;

    max-width: 100%;

    height: auto;

    min-width: 0;

  }

  .text-content--spark39 .text-content {

    max-width: 100%;

    font-size: 1rem;

  }

}



@media (max-width: 480px) {

  .content-wrapper-overlay39 {

    padding: 16px 3vw;

    gap: 16px;

  }

  .image-overlay--blend39 img {

    max-width: 100vw;

    min-width: 0;

    border-radius: var(--radius);

  }

}

/* DEFAULT/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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/blogpreview5.css */
/* ========= PROFILE UNIT R39 ========= */

.profileunit_r39 {
  max-width: 940px;
  margin: 0 auto 50px;
  background: #fcfcff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border: 1px solid #ececff;
}

/* HEADER */

.r39_header {
  position: relative;
  width: 100%;
}

.r39_photo {
  width: 100%;
  aspect-ratio: 4/3.1;
  background: #111;
  overflow: hidden;
}

.r39_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r39_heading {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.6);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.r39_body {
  padding: 26px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */

.r39_desc {
  background: #f0faff;
  padding: 18px 20px;
  border-radius: 12px;
  line-height: 1.62;
  font-size: 1.06rem;
  border-left: 5px solid #00a2ff;
  color: #1f1f1f;
}

/* SPECS TABLE */

.r39_table {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.r39_row {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.r39_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0094e6;
}

.r39_value {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.r39_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#0094e6,#0050d4);
  border-radius: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: .25s ease;
}

.r39_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .r39_table {
    grid-template-columns: repeat(2,1fr);
  }

  .r39_heading {
    font-size: 1.65rem;
  }
}

@media(max-width: 540px) {
  .r39_table {
    grid-template-columns: 1fr;
  }

  .r39_heading {
    font-size: 1.32rem;
    padding: 8px 12px;
  }

  .r39_body {
    padding: 18px 22px 26px;
  }

  .r39_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink8.css */
.linksmetro-badge364 {

  width: 100%;

  max-width: 410px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 4px;

  z-index: 1;

}



.linksmetro-badge364 .linksmetro-title-badge364 {

  font-size: 1.22rem;

  font-weight: 900;

  color: var(--primary);

  margin-bottom: 1.05em;

  letter-spacing: -0.013em;

  text-align: left;

  position: relative;

  padding-left: 17px;

}

.linksmetro-badge364 .linksmetro-title-badge364::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 6px;

  width: 7px; height: 25px;

  background: linear-gradient(140deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .63;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 {

  display: flex;

  flex-direction: column;

  gap: 16px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

  display: flex;

  flex-direction: column;

  gap: 13px;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  min-height: 60px;

  border-radius: 19px;

  overflow: hidden;

  position: relative;

  padding: 0;

  background: var(--light);

  box-shadow: 0 2.5px 14px 0 rgba(57,55,180,.09);

  border: 1.8px solid var(--accent-secondary, #ABA1FB);

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  will-change: transform;

  transition: box-shadow .23s var(--transition), transform .22s var(--transition), border .18s;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 0; bottom: 0;

  width: 14px;

  background: linear-gradient(176deg, var(--primary), var(--accent) 80%);

  border-radius: 19px 4px 4px 19px;

  opacity: .88;

  z-index: 2;

  pointer-events: none;

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus {

  box-shadow: 0 14px 40px 0 var(--primary-hover), 0 0 0 5px var(--accent-transparent);

  border-color: var(--primary);

  transform: translateX(7px) scale(1.025);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

  width: 36px;

  height: 36px;

  border-radius: 13px;

  object-fit: cover;

  object-position: center;

  margin: 10px 22px 10px 24px;

  background: var(--accent-secondary);

  box-shadow: 0 2px 8px 0 var(--accent-transparent);

  transition: filter .19s var(--transition), transform .17s var(--transition);

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:hover img,

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus img {

  filter: brightness(1.10) saturate(1.11) grayscale(0%);

  transform: scale(1.13) rotate(-1deg);

}





.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

  font-size: 1.05rem;

  padding: 13px 14px 10px 0;

  line-height: 1.27;

  letter-spacing: 0.012em;

  text-shadow: 0 1.3px 6px var(--accent-transparent);

  min-width: 0;

}



.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a:focus-visible {

  outline: 2.5px solid var(--accent);

  box-shadow: 0 0 0 4px var(--primary-hover);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .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);

}

.linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image:hover {

    background: none;

}



@media (max-width: 600px) {

  .linksmetro-badge364 {

    max-width: 99vw;

    border-radius: 9px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364 {

    font-size: 1.02rem;

    padding-left: 8px;

  }

  .linksmetro-badge364 .linksmetro-title-badge364::before {

    width: 3.5px; height: 12px; left: 0; top: 7px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 {

    gap: 10px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 {

    gap: 6px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a {

    font-size: .93rem;

    min-height: 43px;

    border-radius: 11px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image img {

    width: 22px; height: 22px; margin: 8px 11px 8px 10px;

    border-radius: 5px;

  }

  .linksmetro-badge364 .linksmetro-wrap-badge364 .link-item-badge364 .with-image a::before {

    width: 7px;

    border-radius: 11px 3px 3px 11px;

  }

}

/* 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);
  }
}