/* 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: color12 */
:root {
    --primary: #008080;
    --primary-hover: #199393;
    --accent: #ff6347;
    --accent-hover: #ff7a66;
    --accent-secondary: #ff917f;
    --accent-transparent: rgba(255, 99, 71, 0.3);
    --background: #f0ffff;
    --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 {

  margin: 0;

  overflow-x: hidden;

  background: var(--background, #fff);

  color: var(--dark);

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

}





.simple-header {

  width: 100%;

  z-index: 10;

  top: 0;

  left: 0;

  background: var(--header);

  box-shadow: var(--shadow);

  position: relative;

}



.header-container {

  max-width: 1280px;

  margin: 0 auto;

  padding: calc(var(--page-gap) * 0.75) var(--page-gap);

  display: flex;

  justify-content: flex-start;

  align-items: center;

  min-width: 0;

}





.hero-fullscreen {

  width: 100vw;

  min-height: 100vh;

  display: flex;

  align-items: stretch;

  justify-content: stretch;

  background: var(--header);

}



.hero-image-bg {

  position: relative;

  width: 100vw;

  min-height: 100vh;

  display: grid;

  place-items: center;

  overflow: hidden;

  isolation: isolate;

}



.hero-image-bg img {

  width: 100vw;

  min-height: 100vh;

  height: 100%;

  object-fit: cover;

  filter: brightness(0.78) grayscale(18%);

  z-index: 1;

  display: block;

}





.hero-overlay {

  position: absolute;

  z-index: 2;

  inset: 0;

  background: linear-gradient(110deg, var(--header) 15%, rgba(0,0,0,0.28) 75%, var(--accent-transparent) 100%);

  backdrop-filter: blur(0px);

  opacity: 0.92;

  pointer-events: none;

}



.hero-centered-content {

  position: absolute;

  z-index: 3;

  top: 50%; left: 50%;

  transform: translate(-50%, -50%);

  width: 100%;

  max-width: 520px;

  padding: clamp(16px, 4vw, 48px);

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  background: rgba(255,255,255,0.05);

  border-radius: calc(var(--radius) * 2);

  box-shadow: 0 4px 32px 0 rgba(34, 41, 56, 0.13);

  backdrop-filter: blur(0.5px);

  gap: calc(var(--page-gap-reduced) * 0.8);

}



.hero-centered-content h1 {

  color: var(--accent);

  font-size: clamp(2.1rem, 4vw, 2.6rem);

  line-height: 1.18;

  letter-spacing: 0.005em;

  margin: 0 0 16px 0;

  font-weight: 700;

}



.hero-subtitle {

  color: var(--dark-muted);

  font-size: 1.08rem;

  margin: 0 0 25px 0;

  font-weight: 500;

  letter-spacing: 0.01em;

}





.hero-cta {

  display: inline-block;

  padding: 0.93em 2.2em;

  font-size: 1.1rem;

  font-weight: 600;

  letter-spacing: 0.03em;

  color: var(--light);

  background: var(--primary);

  border: none;

  border-radius: 6px;

  text-decoration: none;

  box-shadow: 0 2px 16px 0 rgba(12,34,56,0.12);

  transition: var(--transition), box-shadow 0.18s;

  cursor: pointer;

  box-sizing: border-box;

  outline: none;

  min-width: 164px;

  will-change: transform, box-shadow;

}

.hero-cta:hover,

.hero-cta:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.035);

  box-shadow: 0 6px 24px 0 rgba(12,34,56,0.16);

}





.hero-cta:after {

  content: '';

  display: block;

  margin: 0 auto;

  margin-top: 7px;

  width: 48%;

  height: 2px;

  background: linear-gradient(90deg, var(--accent) 40%, var(--primary-hover) 100%);

  opacity: 0;

  transition: opacity 0.25s;

}

.hero-cta:focus-visible:after {

  opacity: 1;

}





@media (max-width: 1024px) {

  .header-container { padding: calc(var(--page-gap-reduced) * 1.1) var(--page-gap); }

  .hero-centered-content { max-width: 400px; }

}



@media (max-width: 768px) {

  .header-container { padding: calc(var(--page-gap-reduced) * 0.9) var(--page-gap-reduced); }

  .hero-centered-content {

    padding: clamp(10px, 6vw, 28px);

    max-width: 96vw;

    font-size: 0.98rem;

    gap: 0.6em;

  }

  .hero-centered-content h1 {

    font-size: clamp(1.48rem, 5vw,2rem);

    margin-bottom: 11px;

  }

}



@media (max-width: 500px) {

  .simple-header { box-shadow: none; }

  .header-container { padding: 10px 8px; }

  .hero-image-bg img { min-height: 100vw; }

  .hero-centered-content { padding: 7vw 2vw; gap: 0.5em;}

  .hero-subtitle { font-size: 0.97rem; }

}

/* 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-category51 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}



.links-block-category51-title {

  font-size: 2.3rem;

  font-weight: 700;

  margin-bottom: 2.5rem;

  letter-spacing: -0.03em;

  color: var(--primary);

}



.links-block-category51-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 32px;

  margin: 0;

  padding: 0;

  list-style: none;

}



.links-block-category51-grid li {

  display: flex;

  

  align-items: stretch;

  width: 100%;

}



.links-block-category51-grid a {

  display: block;

  width: 100%;

  padding: 32px 24px;

  border-radius: var(--radius);

  background: linear-gradient(106deg, var(--accent) 60%, var(--primary) 100%);

  color: var(--light);

  font-size: 1.13rem;

  font-weight: 600;

  text-align: center;

  text-decoration: none;

  box-shadow: var(--shadow);

  transition:

    background 0.23s var(--transition),

    transform 0.2s var(--transition),

    box-shadow 0.23s var(--transition);

  will-change: transform, box-shadow;

  letter-spacing: 0.01em;

  outline: none;

  user-select: none;

}



.links-block-category51-grid a:hover,

.links-block-category51-grid a:focus {

  background: linear-gradient(106deg, var(--primary) 70%, var(--accent) 100%);

  color: var(--light);

  transform: translateY(-3px) scale(1.03);

  box-shadow: 0 6px 32px 0 rgba(49, 60, 150, 0.15), var(--shadow);

}



@media (max-width: 900px) {

  .links-block-category51-grid {

    gap: 20px;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  }

}



@media (max-width: 768px) {

  .links-block-category51-title {

    font-size: 1.3rem;

    margin-bottom: 1.1em;

  }



  .links-block-category51-grid {

    grid-template-columns: 1fr;

    gap: 14px;

  }



  .links-block-category51-grid li {

    width: 100%;

  }

  .links-block-category51-grid a {

    padding: 20px 16px;

    font-size: 1.05rem;

    width: 100%;

    max-width: 100%;

    min-width: 0;

  }

}



@media (max-width: 500px) {

  .links-wrapper.links-block-category51 {

    padding: 24px 5vw;

  }

}

/* BODY */
.content-block-frame157 {

  box-sizing: border-box;

  width: 100%;

  max-width: 1240px;

  margin: 0 auto;

  padding: var(--section-gap) var(--page-gap);

  background: var(--light);

  overflow-x: hidden;

}



.content-wrapper-gradient157 {

  display: flex;

  align-items: center;

  gap: 46px;

  max-width: 100%;

  box-sizing: border-box;

}



.content-image--borderflare157 {

  flex: 0 0 auto;

  display: flex;

  justify-content: center;

  align-items: center;

  border: 4px solid; 

  border-image: linear-gradient(140deg, var(--primary), var(--accent), var(--accent-secondary), var(--primary)) 1;

  border-radius: 18px;

  background: var(--light);

  box-shadow: 0 4px 24px var(--accent-transparent), var(--shadow);

  overflow: hidden;

  min-width: 0;

  transition: box-shadow 0.3s var(--transition), transform 0.24s var(--transition);

}



.content-image--borderflare157 img,

.content-image--borderflare157 > img {

  display: block;

  width: 320px;

  height: 480px;

  object-fit: cover;

  border-radius: 14px;

  filter: none;

  transition: filter 0.22s var(--transition), transform 0.24s var(--transition);

  background: var(--accent-transparent);

  box-shadow: 0 2px 12px var(--dark-muted);

}



.content-image--borderflare157:hover,

.content-image--borderflare157:focus-within {

  box-shadow: 0 8px 32px var(--accent-transparent), 0 2px 24px var(--shadow), 0 0 0 4px var(--accent-secondary);

  transform: translateY(-4px) scale(1.015);

}



.content-image--borderflare157:hover img,

.content-image--borderflare157:focus-within img {

  filter: brightness(1.04) contrast(1.05) saturate(1.05) drop-shadow(0 2px 8px var(--accent-transparent));

  transform: scale(1.016) rotate(-1deg);

}



.text-content--spark157 {

  flex: 1 1 0;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 32px;

  position: relative;

}



.text-content--spark157 .text-content {

  font-family: inherit;

  color: var(--dark);

  line-height: 1.68;

  font-size: 1.1rem;

  letter-spacing: 0.02em;

  padding-bottom: 8px;

}



.text-content--spark157 h2,

.text-content--spark157 h3 {

  color: var(--accent);

  margin-bottom: 14px;

  font-weight: 700;

  letter-spacing: 0.01em;

}



.text-content--spark157 h2 {

  font-size: 2.2rem;

}



.text-content--spark157 h3 {

  font-size: 1.3rem;

}



.text-content--spark157 p {

  margin-bottom: 12px;

  color: var(--dark-default);

  font-size: 1.12rem;

}



.text-content--spark157 ul,

.text-content--spark157 ol {

  margin: 0 0 16px 18px;

  padding-left: 20px;

  color: var(--dark-default);

}



.text-content--spark157 ul {

  list-style: disc inside;

}



.text-content--spark157 ol {

  list-style: decimal inside;

}



.text-content--spark157 li {

  margin-bottom: 6px;

  padding-left: 4px;

  line-height: 1.5;

}



.text-content--spark157 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s var(--transition);

}



.text-content--spark157 a:hover,

.text-content--spark157 a:focus {

  color: var(--accent);

  text-decoration: underline wavy var(--primary-hover) 2px;

}



.text-content--spark157 table {

  width: 100%;

  border-collapse: separate;

  border-spacing: 0;

  margin: 14px 0 16px 0;

  background: var(--background);

  border-radius: 4px;

  overflow-x: auto;

  box-shadow: 0 2px 8px var(--accent-transparent);

}



.text-content--spark157 thead {

  background: var(--accent-transparent);

  color: var(--accent);

}



.text-content--spark157 th,

.text-content--spark157 td {

  border: 1px solid var(--accent-secondary);

  padding: 7px 10px;

  text-align: left;

  color: var(--dark-default);

  font-size: 1rem;

}



.text-content--spark157 th {

  font-weight: 600;

}



.text-content--spark157 td {

  background: var(--light);

}



.cta-button--soft157.button {

  display: inline-block;

  margin-top: 12px;

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  box-shadow: 0 2px 16px var(--accent-transparent);

  font-weight: 700;

  font-size: 1.1rem;

  cursor: pointer;

  text-decoration: none;

  text-align: center;

  transition: background 0.25s var(--transition),

              box-shadow 0.26s var(--transition),

              transform 0.21s var(--transition),

              letter-spacing 0.18s;

  will-change: background, box-shadow, transform;

  position: relative;

  z-index: 2;

  min-width: max-content;

  max-width: 100%;

}



.cta-button--soft157.button:hover,

.cta-button--soft157.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 4px 32px var(--primary-hover), 0 2px 28px var(--accent-transparent);

  transform: translateY(-2px) scale(1.025);

  letter-spacing: 0.5px;

}



.cta-button--soft157.button:active {

  transform: scale(0.98);

  background: var(--accent);

  box-shadow: 0 1px 12px var(--accent-transparent);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient157 {

    gap: 28px;

  }

  .content-image--borderflare157 img,

  .content-image--borderflare157 > img {

    width: 220px;

    height: 330px;

  }

}



@media (max-width: 768px) {

  .content-block-frame157 {

    padding: var(--section-gap) var(--page-gap-reduced);

  }

  .content-wrapper-gradient157 {

    flex-direction: column;

    align-items: flex-start;

    gap: 26px;

  }

  .content-image--borderflare157,

  .content-image--borderflare157 img,

  .content-image--borderflare157 > img {

    width: 100%;

    min-width: 0;

    max-width: 320px !important;

    min-height: 180px !important;

    height: auto;

    margin: 0 auto;

    border-radius: 11px;

  }

  .text-content--spark157 {

    width: 100%;

    padding-left: 0;

    gap: 18px;

  }

  .cta-button--soft157.button {

    width: max-content;

    min-width: 0;

    margin: 20px 0 0 0;

    align-self: flex-start;

  }

  .text-content--spark157 table {

    font-size: 0.93rem;

    overflow-x: auto;

    display: block;

  }

}



@media (max-width: 480px) {

  .content-block-frame157 {

    padding: var(--section-gap) 7px;

  }

  .content-image--borderflare157 img,

  .content-image--borderflare157 > img {

    max-width: 100% !important;

    height: auto;

    min-height: 120px !important;

  }

  .text-content--spark157 h2 {

    font-size: 1.38rem;

  }

  .text-content--spark157 h3 {

    font-size: 1.04rem;

  }

}

.ripple157 {

  position: absolute;

  border-radius: 50%;

  transform: scale(0);

  animation: ripple-anim157 0.6s linear forwards;

  background: rgba(255,255,255,0.32);

  pointer-events: none;

  z-index: 9;

}



@keyframes ripple-anim157 {

  to {

    transform: scale(2.7);

    opacity: 0;

  }

}

/* DEFAULT/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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/blogpreview8.css */
/* ======== PROFILE UNIT T12 ======== */

.profileunit_t12 {
  max-width: 960px;
  margin: 0 auto 50px;
  background: #f9fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border: 1px solid #dce2f0;
}

/* HEADER */
.t12_header {
  position: relative;
}

.t12_photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 4px solid #a3b4d1;
}

.t12_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t12_title {
  position: absolute;
  bottom: 14px;
  left: 20px;
  right: 20px;
  background: rgba(163,180,209,0.7);
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* BODY */
.t12_body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* DESCRIPTION */
.t12_desc {
  background: #eef2fb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #a3b4d1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1b1b1b;
}

/* SPECS GRID */
.t12_specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.t12_item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #dce2f0;
}

.t12_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b84a5;
}

.t12_value {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */
.t12_button {
  display: block;
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#6b84a5,#3e5373);
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.t12_button:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .t12_specs {
    grid-template-columns: repeat(2,1fr);
  }
  .t12_title {
    font-size: 1.65rem;
    padding: 10px 14px;
  }
}

@media(max-width: 540px) {
  .t12_specs {
    grid-template-columns: 1fr;
  }
  .t12_body {
    padding: 18px 22px 24px;
  }
  .t12_button {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex1.css */
.profiledeck-wrap {
  width: 100%;
  padding-top: 2rem;
  box-sizing: border-box;
}

.profiledeck-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(93deg, var(--primary), var(--accent) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 40px 0 35px;
  letter-spacing: -0.02em;
}

.profiledeck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem 1.2rem;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profiledeck-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 8px 28px -6px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px -4px var(--primary-hover);
}

.profiledeck-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}

.profiledeck-body {
  padding: 1rem 1.1rem 1.5rem;
}

.profiledeck-name {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.94rem;
  color: var(--dark-secondary);
  line-height: 1.42;
  margin-bottom: 1rem;
  min-height: 54px;
}

.profiledeck-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: var(--light);
  padding: 0.65em 1.2em;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 3px 10px var(--accent-transparent);
  transition: background .18s, box-shadow .18s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 8px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-title {
    font-size: 1.45rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    min-height: 40px;
  }
}

@media (max-width: 540px) {
  .profiledeck-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink4.css */
.linksstack-delta27 {

  width: 100%;

  max-width: 330px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  padding-top: 10px;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .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);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image:hover {

    background: none;

}

.linksstack-delta27 .linksstack-title-delta27 {

  font-size: 1.18rem;

  font-weight: 900;

  letter-spacing: -0.01em;

  color: var(--primary);

  margin-bottom: 1.05em;

  text-align: left;

  padding-left: 19px;

  position: relative;

}



.linksstack-delta27 .linksstack-title-delta27::before {

  content: '';

  display: block;

  position: absolute;

  left: 0; top: 4px;

  width: 7px; height: 25px;

  background: linear-gradient(180deg, var(--accent), var(--primary));

  border-radius: 8px;

  opacity: .56;

}



.linksstack-delta27 .linksstack-wrap-delta27 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap-reduced);

  z-index: 2;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

  display: flex;

  flex-direction: column;

  gap: 19px;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 > .with-image:not(:first-child) {

  margin-top: -18px;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: 17px;

  overflow: hidden;

  text-decoration: none;

  color: var(--dark);

  background: var(--light);

  font-weight: 700;

  box-shadow:

    0 10px 28px 0 rgba(85,64,200,0.09),

    0 4px 32px 0 rgba(75,28,160,0.10);

  transition:

    box-shadow .30s var(--transition),

    transform .25s cubic-bezier(.41,1.3,.21,1.01),

    border-color .18s var(--transition);

  padding: 0;

  z-index: 2;

  border: 2.5px solid transparent;

  border-left: 7px solid var(--accent-transparent, #c9b8fd);

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus {

  box-shadow:

    0 18px 38px 0 rgba(90,60,180,0.17),

    0 9px 40px 0 var(--primary-hover);

  transform: translateY(-5px) scale(1.023) rotate(-1deg);

  border-color: var(--accent);

  outline: none;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

  width: 100%;

  height: 122px;

  display: block;

  object-fit: cover;

  border-radius: 15px 15px 0 0;

  filter: grayscale(7%) brightness(1.02) contrast(1.05);

  transition: filter 0.17s var(--transition);

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:hover img,

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus img {

  filter: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

  font-size: 1.06rem;

  line-height: 1.33;

  padding: 0.88em 1.2em 1em 1.75em;

  position: relative;

  z-index: 2;

}

.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

  content: '';

  position: absolute;

  left: 0px; top: 15px;

  width: 7px; height: 28px;

  background: linear-gradient(180deg, var(--primary), var(--accent));

  border-radius: 9px;

  opacity: 0.55;

  z-index: 1;

}



.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::after {

  content: '';

  position: absolute;

  left: 16px; right: 16px;

  bottom: 13px;

  height: 7px;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  opacity: 0.12;

  z-index: 1;

  pointer-events: none;

}





.linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

  box-shadow: 0 0 0 5px var(--accent-transparent);

}





@media (max-width: 540px) {

  .linksstack-delta27 {

    max-width: 99vw;

    padding-top: 2px;

  }

  .linksstack-delta27 .linksstack-title-delta27 {

    font-size: 1.02rem;

    margin-bottom: .75em;

    padding-left: 12px;

  }

  .linksstack-delta27 .linksstack-title-delta27::before {

    width: 4px; height: 12px; left:0; top:4px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 {

    gap: 11px;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image img {

    height: 83px;

    border-radius: 11px 11px 0 0;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a {

    font-size: .93rem;

    padding: 0.57em 0.7em 0.71em 1em;

  }

  .linksstack-delta27 .linksstack-wrap-delta27 .link-item-delta27 .with-image a::before {

    width: 4px; height: 17px; top: 10px;

  }

}

/* 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);
  }
}