/* 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: color13 */
:root {
    --primary: #dc143c;
    --primary-hover: #e23a5e;
    --accent: #00ced1;
    --accent-hover: #1ad6d7;
    --accent-secondary: #33dede;
    --accent-transparent: rgba(0, 206, 209, 0.3);
    --background: #ffe4e1;
    --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, html {

  margin: 0;

  padding: 0;

  overflow-x: hidden;

  background: var(--background);

}



.header-block-simple219 {

  width: 100%;

  background: var(--header);

  box-shadow: var(--shadow);

  padding: 0;

}



.header-block-simple219__container {

  display: flex;

  align-items: center;

  height: 76px;

  padding: 0 calc(var(--page-gap) * 1.5);

  min-width: 0;

}



.header-block-simple219__logo-link {

  display: flex;

  align-items: center;

  text-decoration: none;

  user-select: none;

}



.hero-block-simple219 {

  width: 100%;

  padding: 0;

  background: none;

}



.hero-block-simple219__inner {

  display: flex;

  align-items: stretch;

  justify-content: center;

  gap: calc(var(--page-gap) * 2);

  max-width: 1120px;

  margin: 0 auto;

  padding: calc(var(--section-gap) * 1.1) var(--page-gap);

  min-height: 480px;

  box-sizing: border-box;

}



.hero-block-simple219__image-side {

  flex: 0 1 320px;

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

}



.hero-block-simple219__image-wrapper {

  position: relative;

  width: 320px;

  height: 480px;

  border-radius: calc(var(--radius) * 2.8);

  box-shadow: 0 12px 32px 0 rgba(10, 0, 93, 0.13), 0 2px 10px 0 rgba(0,0,0,0.08);

  overflow: hidden;

  display: flex;

  align-items: stretch;

  justify-content: center;

}



.hero-block-simple219__image-wrapper img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center center;

  position: relative;

  z-index: 1;

  border-radius: inherit;

}



.hero-block-simple219__overlay {

  position: absolute;

  inset: 0;

  z-index: 2;

  background: 

    linear-gradient(135deg, var(--accent) 0%, rgba(255,255,255,0.05) 100%);

  opacity: 0.25;

  mix-blend-mode: multiply;

  pointer-events: none;

  border-radius: inherit;

}



.hero-block-simple219__content-side {

  flex: 1 1 0;

  display: flex;

  align-items: center;

  min-width: 0;

  max-width: 540px;

  padding: 0;

  justify-content: flex-start;

}



.hero-block-simple219__content-glass {

  backdrop-filter: blur(12px) saturate(150%);

  background: linear-gradient(120deg, rgba(255,255,255,0.65) 65%, var(--accent-transparent) 100%);

  box-shadow: 0 8px 24px 0 rgba(149,24,48,0.06), var(--shadow);

  border-radius: calc(var(--radius) * 2.5);

  padding: calc(var(--section-gap) * 0.5) calc(var(--page-gap) * 1.5);

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  min-width: 0;

  animation: glass-fade-in 0.88s cubic-bezier(.44,0,.6,1.1);

}



@keyframes glass-fade-in {

  0% { opacity: 0; transform: translateY(32px) scale(0.96);}

  100% { opacity: 1; transform: translateY(0) scale(1);}

}



.hero-block-simple219__title {

  font-size: 2.8rem;

  font-weight: 800;

  line-height: 1.13;

  color: var(--accent);

  letter-spacing: -0.03em;

  margin: 0 0 0.2em 0;

}

header img {



    margin-top: 15px;

}

.hero-block-simple219__desc {

  font-size: 1.15rem;

  line-height: 1.8;

  color: var(--dark-muted);

  margin: 0 0 1rem 0;

  max-width: 390px;

}



.hero-block-simple219__cta {

  display: inline-block;

  font-size: 1.12rem;

  font-weight: 700;

  letter-spacing: 0.03em;

  padding: 0.9em 2.2em;

  margin-top: 0.2em;

  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);

  color: var(--light);

  border-radius: calc(var(--radius) * 2);

  text-decoration: none;

  box-shadow: 0 4px 24px 0 rgba(149,24,48,0.18);

  border: none;

  transition: 

    background var(--transition),

    transform 0.32s cubic-bezier(.49,0,.47,1.1),

    box-shadow 0.22s cubic-bezier(.29,.7,.35,1),

    filter 0.18s;

  cursor: pointer;

  will-change: transform;

  user-select: none;

  outline: none;

  position: relative;

}



.hero-block-simple219__cta:active {

  filter: brightness(.99) contrast(1.08);

}



.hero-block-simple219__cta:focus-visible {

  outline: 2px solid var(--primary-hover);

}



.hero-block-simple219__cta:hover {

  background: linear-gradient(100deg, var(--primary-hover) 75%, var(--accent) 100%);

  transform: scale(1.075) translateY(-3px);

  box-shadow: 0 10px 32px 0 var(--accent-transparent), 0 2px 10px 0 var(--shadow);

}



@media (max-width: 1024px) {

  .hero-block-simple219__inner {

    max-width: 100%;

    gap: var(--page-gap);

    padding: calc(var(--section-gap) * 0.9) var(--page-gap);

  }

  .hero-block-simple219__image-wrapper {

    width: 240px;

    height: 360px;

  }

}



@media (max-width: 768px) {

  .header-block-simple219__container {

    height: 60px;

    padding: 0 var(--page-gap);

  }

  .hero-block-simple219__inner {

    flex-direction: column;

    gap: 2.3rem;

    align-items: center;

    min-width: 0;

    padding: calc(var(--section-gap) * 0.5) var(--page-gap);

  }

  .hero-block-simple219__image-side,

  .hero-block-simple219__content-side {

    max-width: 100%;

    width: 100%;

    justify-content: center;

  }

  .hero-block-simple219__image-wrapper {

    width: 90vw;

    max-width: 350px;

    height: 54vw;

    max-height: 380px;

  }

  .hero-block-simple219__content-glass {

    padding: calc(var(--section-gap) * 0.4) var(--page-gap);

    box-shadow: 0 8px 16px 0 var(--shadow);

  }

  .hero-block-simple219__title {

    font-size: 2.1rem;

    text-align: center;

  }

  .hero-block-simple219__desc {

    font-size: 1rem;

    text-align: center;

    max-width: 100%;

    margin: 0 auto 1.1rem auto;

  }

  .hero-block-simple219__cta {

    width: max-content;

    margin-left: auto;

    margin-right: auto;

    font-size: 1.04rem;

    min-width: 0;

  }

}



@media (max-width: 500px) {

  .hero-block-simple219__image-wrapper {

    width: 99vw;

    max-width: 98vw;

    min-width: 0;

    height: 56vw;

    max-height: 54vw;

  }

  .hero-block-simple219__content-glass {

    padding: calc(var(--section-gap) * 0.25) var(--page-gap-reduced);

    border-radius: calc(var(--radius) * 1.5);

  }

  .hero-block-simple219__title {

    font-size: 1.34rem;

    padding-bottom: 0.15em;

  }

}

/* FOOTER */
/* overlay */

.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
.site-popup-overlay.visible {
  display: flex !important;
  opacity: 1 !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
/* scrolling zone */
.site-popup-content{
  padding: 24px;
  overflow-y: auto;   
  overflow-x: hidden; 
}

/* close button */
.site-popup-close{
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  z-index: 10; 
}


@media (max-width: 600px) {
  .site-popup-panel{
    max-width: 100%;
    border-radius: 10px;
  }
  .site-popup-content{
    padding: 18px;
  }
}



.footer-block-elite937 {
  background: var(--header);
  text-align: center;
  box-shadow: var(--shadow);
  padding: var(--section-gap, 32px) 0;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-elite937-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-block-elite937 img { display: block; margin: 0 auto; }


.footer-links-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-popup-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.18s;
}

.footer-popup-btn:hover { color: var(--light); background: var(--accent); }

.footer-elite937-copyright {
  color: var(--dark);
  margin-top: var(--page-gap);
  opacity: 0;
  animation: elite937-fade-in 1s ease 0.2s forwards;
  font-size: 1rem;
  transition: opacity 0.3s var(--transition);
}

@keyframes elite937-fade-in { to { opacity: 1; } }

@media (max-width: 600px) {
  .footer-block-elite937 { padding: var(--page-gap) 0; }
  .footer-elite937-inner { padding: 0 var(--page-gap-reduced); }
  .footer-elite937-copyright { font-size: 0.95rem; }
}

.links-wrapper.links-block-explore789 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap, 40px 24px);

}



.links-block-explore789-title {

  font-size: 2rem;

  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 32px;

  color: var(--accent, #8f66ff);

  letter-spacing: -0.02em;

}





.links-block-explore789-list {

  display: grid;

  grid-template-columns: repeat(2, minmax(220px, 1fr));

  gap: 24px;

  list-style: none;

  padding: 0;

  margin: 0;

}



.links-block-explore789-list li {

  margin: 0;

  padding: 0;

}





.links-block-explore789-list a {

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 14px 24px;

  background: rgba(var(--primary-rgb, 0,0,0), 0.04);

  border: 1.5px solid var(--accent-transparent, #ccc);

  border-radius: var(--radius, 14px);

  color: var(--primary, #24242c);

  font-weight: 500;

  font-size: 1.08rem;

  text-decoration: none;

  transition:

      background 0.22s var(--transition, ease),

      color 0.22s var(--transition, ease),

      border-color 0.2s var(--transition, ease),

      box-shadow 0.22s var(--transition, ease),

      transform 0.18s var(--transition, cubic-bezier(.25,.8,.25,1));

  box-shadow: 0 0 0 transparent;

  box-sizing: border-box;

  cursor: pointer;

  min-width: 0;

  position: relative;

}





.links-block-explore789-list a::before {

  content: "";

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 28px;

  height: 28px;

  margin-right: 16px;

  border-radius: 50%;

  background: var(--accent-transparent, rgba(140,100,255,0.13));

  

  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="7" fill="%238f66ff"/></svg>');

  background-repeat: no-repeat;

  background-position: center;

  background-size: 18px 18px;

  flex-shrink: 0;

  transition: background 0.22s var(--transition, ease), filter 0.22s var(--transition, ease);

}





.links-block-explore789-list a:hover,

.links-block-explore789-list a:focus-visible {

  background: var(--primary, #24242c);

  color: var(--light, #fff);

  border-color: var(--accent, #8f66ff);

  box-shadow: 0 6px 22px -8px var(--shadow, rgba(30,20,80,0.13));

  transform: translateY(-2px) scale(1.025);

}



.links-block-explore789-list a:hover::before,

.links-block-explore789-list a:focus-visible::before {

  background: var(--accent, #8f66ff);

  

  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="7" fill="white"/></svg>');

  filter: drop-shadow(0 2px 6px rgba(140,100,255,0.16));

}





@media (max-width: 900px) {

  .links-block-explore789-list {

    grid-template-columns: 1fr;

    gap: 18px;

  }

  .links-block-explore789-title {

    margin-bottom: 20px;

    font-size: 1.5rem;

  }

}



@media (max-width: 600px) {

  .links-wrapper.links-block-explore789 {

    padding: 24px 8px;

  }

  .links-block-explore789-list {

    grid-template-columns: 1fr;

    gap: 13px;

  }

  .links-block-explore789-list a {

    width: 100%;

    justify-content: center;

    font-size: 1rem;

    padding: 12px 14px;

  }

  .links-block-explore789-list a::before {

    margin-right: 10px;

  }

}

/* BODY */
.content-block-glass79 {

  position: relative;

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  min-height: 480px;

  display: flex;

  align-items: stretch;

  justify-content: center;

  transition: var(--transition);

  isolation: isolate;

}



.background-image-glass79 {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  z-index: 1;

  pointer-events: none;

  overflow: hidden;

}



.background-image-glass79 img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  min-width: 0;

  min-height: 0;

  display: block;

  user-select: none;

  pointer-events: none;

  will-change: transform;

  transition: transform 0.8s cubic-bezier(.33,1,.68,1);

}



.frosted-overlay-glass79 {

  position: relative;

  min-height: 480px;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 60px 24px 36px 24px;

  width: 100%;

}



.content-wrapper-glass79 {



  width: 100%;

  background: rgba(255, 255, 255, 0.32);

  box-shadow: var(--shadow);

  border-radius: 20px;

  backdrop-filter: blur(0.5px);

  -webkit-backdrop-filter: blur(0.5px);

  padding: 42px 36px 32px 36px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 36px;

  animation: glass79-fade-up 1.2s cubic-bezier(.44,1.6,.66,0.95) both;

}



@keyframes glass79-fade-up {

  0% {

    opacity: 0;

    transform: translateY(40px) scale(0.98);

  }

  75% {

    opacity: 1;

    transform: translateY(-8px) scale(1.012);

  }

  100% {

    opacity: 1;

    transform: translateY(0) scale(1);

  }

}



.text-content--glass79 {

  width: 100%;

  color: var(--dark);

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  font-weight: 400;

  font-size: 1.16rem;

  line-height: 1.7;

  letter-spacing: 0.01em;

}



.text-content--glass79 h2,

.text-content--glass79 h3 {

  font-weight: 600;

  margin-top: 0;

  margin-bottom: 0.7em;

  letter-spacing: 0.01em;

  color: var(--accent);

}



.text-content--glass79 h2 { font-size: 2rem;}

.text-content--glass79 h3 { font-size: 1.35rem;}



.text-content--glass79 p {

  margin: 0 0 1em 0;

  color: var(--dark-default);

}



.text-content--glass79 ul,

.text-content--glass79 ol {

  margin: 0 0 1em 1.2em;

  padding: 0 0 0 1.1em;

  color: var(--dark-default);

}



.text-content--glass79 ul li,

.text-content--glass79 ol li {

  position: relative;

  margin-bottom: 0.5em;

  padding-left: 6px;

  font-size: 1.04em;

}



.text-content--glass79 ul li:before {

  content: '';

  position: absolute;

  left: -1em;

  top: 0.6em;

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: var(--primary);

  display: inline-block;

  transform: translateY(-50%);

}



.text-content--glass79 a {

  color: var(--primary);

  text-decoration: underline dotted;

  transition: color 0.18s;

}



.text-content--glass79 a:hover,

.text-content--glass79 a:focus {

  color: var(--accent);

  text-decoration: underline solid;

}



.text-content--glass79 table {

  width: 100%;

  border-collapse: collapse;

  margin-top: 1em;

  border-radius: 6px;

  overflow-x: auto;

  font-size: 0.99em;

  background: rgba(255,255,255,0.97);

  box-shadow: 0 1px 4px rgba(0,0,0,0.07);

}



.text-content--glass79 th,

.text-content--glass79 td {

  padding: 10px 16px;

  border: 1px solid rgba(0,0,0,0.12);

  text-align: left;

}



.text-content--glass79 th {

  background: var(--accent-secondary);

  color: var(--accent);

  font-weight: 600;

}



.cta-button--glass79.button {

  display: inline-block;

  margin-top: 12px;

  padding: 14px 36px;

  border-radius: var(--radius);

  font-size: 1.04rem;

  font-weight: 600;

  letter-spacing: 0.02em;

  background: var(--primary);

  color: var(--light);

  box-shadow: 0 4px 24px rgba(149,24,48,0.14),0 1.5px 5px rgba(0,0,0,0.0702);

  outline: none;

  border: none;

  transition: var(--transition), transform 0.18s cubic-bezier(0.28,0.9,0.5,1.1);

  cursor: pointer;

  user-select: none;

  white-space: nowrap;

  min-width: 0;

  max-width: 100%;

}



.cta-button--glass79.button:hover,

.cta-button--glass79.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-4px) scale(1.04);

  box-shadow: 0 8px 28px rgba(149,24,48,0.20),0 1.5px 5px rgba(0,0,0,0.11);

  outline: none;

}



.cta-button--glass79.button:active {

  transform: translateY(0) scale(0.98);

  box-shadow: 0 3px 12px rgba(149,24,48,0.13),0 1.5px 4px rgba(0,0,0,0.08);

}



@media (max-width: 992px) {

  .content-wrapper-glass79 {

    max-width: 96vw;

    padding: 36px 20px 28px 20px;

    gap: 28px;

  }

  .frosted-overlay-glass79 {

    padding: 40px 6vw 28px 6vw;

    min-height: 384px;

  }

}



@media (max-width: 768px) {

  .content-wrapper-glass79 {

    max-width: 98vw;

    padding: 26px 7vw 20px 7vw;

    border-radius: 18px;

    gap: 18px;

  }

  .frosted-overlay-glass79 {

    padding: 16vw 1.5vw 14vw 1.5vw;

    min-height: 260px;

  }

  .text-content--glass79 h2 {

    font-size: 1.24rem;

  }

}



@media (max-width: 490px) {

  .content-wrapper-glass79 {

    padding: 14px 4vw 12px 4vw;

    border-radius: 11px;

    gap: 11px;

  }

  .frosted-overlay-glass79 {

    padding: 10vw 0 10vw 0;

    min-height: 200px;

  }

}



@media (max-width: 420px) {

  .cta-button--glass79.button {

    padding: 11px 1em;

    font-size: 0.99rem;

  }

}





.parallax-glass79 {

  will-change: transform;

}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}

/* DEFAULT/blogpreview1.css */
/* ============ PROFILE BOX A17 ============ */

.profilebox_a17 {
  max-width: 1080px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  padding: 20px;
}

/* LEFT COLUMN */
.pb17_leftcol {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pb17_photo {
  width: 100%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.pb17_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb17_textdesc {
  background: rgba(240,240,255,0.65);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.03rem;
  line-height: 1.55;
  color: #2d2d2d;
}

/* RIGHT COLUMN */
.pb17_rightcol {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* TITLE */
.pb17_title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* GRID */
.pb17_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.pb17_row {
  background: #f4f6ff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.pb17_label {
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
}

.pb17_val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

/* BUTTON */
.pb17_btn {
  margin-top: 10px;
  padding: 14px 20px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.pb17_btn:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 900px) {
  .profilebox_a17 {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.7rem;
  }
}

@media(max-width: 540px) {
  .pb17_info_grid {
    grid-template-columns: 1fr;
  }
  .pb17_title {
    font-size: 1.35rem;
  }
  .pb17_btn {
    font-size: 1rem;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink1.css */
.links-block-alpha42 {

  width: 100%;

  max-width: 300px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.links-title-alpha42 {

  font-size: var(--font-size-h3);

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 1rem;

  position: relative;

}



.links-title-alpha42::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  background: var(--accent);

  margin-top: 0.5rem;

  border-radius: 2px;

}





.links-wrapper-alpha42 {

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

}





.link-item-alpha42 .with-image a {

  display: flex;

  flex-direction: column;

  position: relative;

  border-radius: var(--radius-xl);

  overflow: hidden;

  box-shadow: 0 4px 12px var(--shadow);



  transition: transform 0.3s ease, box-shadow 0.3s ease;

  text-decoration: none;

  color: var(--light);

}



.link-item-alpha42 .with-image a:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 16px var(--shadow);

  

}





.link-item-alpha42 .with-image img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

}





.link-item-alpha42 .with-image a {

  font-weight: 600;

  font-size: var(--font-size-base);

  padding: 0.75rem 1rem;

  position: relative;

}





.link-item-alpha42 .with-image a::before {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 100%;

  background: var(--primary-hover);

  clip-path: polygon(0 70%, 100% 60%, 100% 100%, 0% 100%);

  z-index: -1;

  transition: background 0.3s ease;

}



.link-item-alpha42 .with-image a:hover::before {

  background: var(--primary);

}





@media (max-width: 768px) {

  .links-block-alpha42 {

    max-width: 100%;

  }



  .links-wrapper-alpha42 {

    gap: var(--page-gap-reduced);

  }



  .link-item-alpha42 .with-image a {

    font-size: var(--font-size-sm);

    padding: 0.5rem 0.75rem;

  }

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}