/* 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: color18 */
:root {
    --primary: #00ff7f;
    --primary-hover: #1aff8f;
    --accent: #8a2be2;
    --accent-hover: #9d42e6;
    --accent-secondary: #b155e9;
    --accent-transparent: rgba(138, 43, 226, 0.3);
    --background: #f5fffa;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
body {

  overflow-x: hidden;

  font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;

  box-sizing: border-box;

  color: var(--dark);

  background: var(--background);

  margin: 0;

}





*,

*:before,

*:after {

  box-sizing: inherit;

  min-width: 0;

}





.site-header {

  position: relative;

  width: 100%;

  box-shadow: var(--shadow);

  z-index: 50;

  background: var(--header);

  transition: var(--transition);

  padding: 0;
  padding-bottom: 20px;

}



.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 72px;

  padding: 0 var(--page-gap);

  max-width: 1300px;

  margin: 0 auto;

  gap: var(--page-gap);

}



.logo-wrap img {

  display: block;

  margin-top:30px;

  object-fit: contain;

}





.header-spacer {

  flex: 1;

}





.header-cta {

  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 0.5em;

  font-weight: 600;

  background: var(--primary);

  color: var(--light);

  padding: 0.75em 2em;

  border-radius: calc(var(--radius) * 1.5);

  font-size: 1.1rem;

  min-width: 120px;

  text-decoration: none;

  box-shadow: 0 3px 18px -8px var(--primary-hover);

  overflow: hidden;

  isolation: isolate;

  cursor: pointer;

  transition: var(--transition), box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);

}



.header-cta-bg {

  position: absolute;

  inset: 0;

  z-index: 0;

  background: linear-gradient(110deg, var(--primary-hover), var(--primary) 70%);

  opacity: 0;

  transition: opacity 0.35s var(--transition);

  border-radius: inherit;

  pointer-events: none;

}



.header-cta:hover,

.header-cta:focus-visible {

  color: var(--light);

  box-shadow: 0 6px 24px -4px var(--primary-hover);

  transform: translateY(-2px) scale(1.045);

}

.header-cta:hover .header-cta-bg,

.header-cta:focus-visible .header-cta-bg {

  opacity: 0.16;

}

.header-cta[data-animate]::after {

  content: "";

  position: absolute;

  z-index: 1;

  inset: 0;

  border-radius: inherit;

  background: rgba(255,255,255,0.12);

  pointer-events: none;

  opacity: 0;

  transition: opacity 0.25s;

}

.header-cta:active[data-animate]::after {

  opacity: 1;

}



@media (max-width: 991px) {

  .header-inner {

    padding: 0 var(--page-gap-reduced);

  }

}

@media (max-width: 480px) {

  .header-inner {

    gap: 14px;

    height: 60px;

    padding: 0 10px;

  }



  .header-cta {

    padding: 0.62em 1.35em;

    font-size: 0.97rem;

    min-width: 95px;

  }

}





.hero-section {

  position: relative;

  overflow: hidden;

  padding: 0;

  background: var(--accent);

  min-height: 680px;

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.hero-gradient {

  pointer-events: none;

  z-index: 1;

  position: absolute;

  inset: 0;

  background:

    linear-gradient(120deg, var(--header) 0%, transparent 45% 80%, var(--header) 100%) 0 0/100% 200% no-repeat,

    radial-gradient(ellipse at 80% 16%, var(--accent) 25%, transparent 70%) 0 0/100% 100% no-repeat;

  opacity: 0.62;

  mix-blend-mode: lighten;

  will-change: opacity;

}



.hero-grid {

  display: grid;

  grid-template-columns: 1.04fr 0.96fr;

  align-items: center;

  gap: calc(var(--section-gap) * 1.1);

  max-width: 1320px;

  margin: 0 auto;

  padding: calc(var(--section-gap) * 1.3) var(--page-gap);

  position: relative;

  z-index: 2;

}



.hero-content {

  z-index: 3;

  position: relative;

  padding: 0 0.5em;

  text-shadow:

    0 3px 24px rgba(0,0,0,.06),

    0 1.5px 6px var(--accent-transparent);

}

.hero-title {

  font-size: clamp(2.4rem, 5vw, 3.75rem);

  font-weight: 800;

  color: var(--accent);

  line-height: 1.1;

  margin-top: 0;

  margin-bottom: 0.4em;

  letter-spacing: -.04em;

  text-wrap: pretty;

  background: linear-gradient(90deg, var(--accent), var(--primary));

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

.hero-desc {

  font-size: 1.25rem;

  color: var(--dark-muted);

  max-width: 36em;

  margin-bottom: 2em;

  margin-top: 0;

  letter-spacing: .01em;

  line-height: 1.6;

}



.hero-btn {

  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 0.8em;

  background: var(--primary);

  color: var(--light);

  padding: 1.1em 2.3em 1.1em 2em;

  border-radius: calc(var(--radius) * 2);

  font-size: 1.07rem;

  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 6px 32px -12px var(--primary-hover);

  transition: var(--transition), box-shadow .32s cubic-bezier(0.16,1,0.3,1);

  overflow: hidden;

  isolation: isolate;

  cursor: pointer;

  will-change: transform, box-shadow;

}

.hero-btn-arrow {

  transition: transform var(--transition);

  color: var(--light);

  position: relative;

  top: 1px;

}

.hero-btn-bg {

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, var(--primary-hover) 20%, var(--primary) 85%);

  opacity: 0;

  z-index: 0;

  border-radius: inherit;

  pointer-events: none;

  transition: opacity .32s var(--transition);

}

.hero-btn:hover,

.hero-btn:focus-visible {

  color: var(--light);

  box-shadow: 0 10px 44px -12px var(--primary-hover);

  transform: scale(1.055);

}

.hero-btn:hover .hero-btn-arrow,

.hero-btn:focus-visible .hero-btn-arrow {

  transform: translateX(6px) scale(1.12);

}

.hero-btn:hover .hero-btn-bg,

.hero-btn:focus-visible .hero-btn-bg {

  opacity: 0.19;

}

.hero-btn[data-animate]::after {

  content: "";

  position: absolute;

  z-index: 1;

  inset: 0;

  border-radius: inherit;

  background: rgba(255,255,255,0.13);

  pointer-events: none;

  opacity: 0;

  transition: opacity 0.22s;

}

.hero-btn:active[data-animate]::after {

  opacity: 1;

}



.hero-image-wrap {

  position: relative;

  z-index: 3;

}

.image-overlay {

  position: relative;

  margin: 0;

  border-radius: 2.3em;

  overflow: hidden;

  box-shadow: 0 14px 44px -8px var(--accent-transparent),

    0 1.5px 1.5px var(--shadow);

  display: flex;

  align-items: stretch;

  aspect-ratio: 16/10;

  background: var(--header);

  min-width: 0;

  min-height: 0;

}

.image-overlay img {

  display: block;

  width: 100%;

  height: auto;

  aspect-ratio: 16/10;

  object-fit: cover;

  z-index: 1;

  filter: brightness(0.94) saturate(1.15) contrast(1.02);

  transition: filter .65s cubic-bezier(.5,0,.2,1);

  will-change: filter;

}

.image-overlay:hover img {

  filter: brightness(1) saturate(1.18) contrast(1.06);

}

.img-overlay {

  position: absolute;

  inset: 0;

  z-index: 2;

  background:

    linear-gradient(110deg, var(--accent-transparent) 14%, transparent 60%, var(--primary-hover) 100%);

  mix-blend-mode: multiply;

  opacity: 0.33;

  pointer-events: none;

  transition: opacity .45s cubic-bezier(.36,0,.49,1);

  will-change: opacity;

  backdrop-filter: blur(3px) saturate(1.15);

}



@media (max-width: 991px) {

  .hero-grid {

    grid-template-columns: 1fr;

    gap: var(--section-gap);

    padding: calc(var(--section-gap) * 1.1) var(--page-gap);

  }

  .image-overlay {

    border-radius: 1.1em;

  }

  .hero-content {

    padding: 0;

    text-align: center;

  }

  .hero-btn {

    margin-left: auto;

    margin-right: auto;

  }

}

@media (max-width: 600px) {

  .hero-section {

    min-height: 440px;

  }

  .hero-content {

    padding-top: 0;

    padding-bottom: 0;

  }

  .hero-title {

    font-size: clamp(1.45rem, 8.5vw, 2.1rem);

  }

  .image-overlay {

    border-radius: 11px;

    min-height: 180px;

  }

  .hero-grid {

    padding: 2em 0.7em 1.8em 0.7em;

  }

}





a.header-cta,

a.hero-btn,

a.header-cta:focus,

a.hero-btn:focus {

  outline: 0;

  border: none;

}



@media (hover: hover) and (pointer: fine) {

  .header-cta:active,

  .hero-btn:active {

    transform: scale(0.99) translateY(1px);

    transition: transform .14s cubic-bezier(.2,1,.49,1);

  }

}.logo-wrap img

/* 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-infocard527 {

  background: var(--light);

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.15));

  box-shadow: var(--shadow), 0 6px 40px 0 rgba(10,0,93,0.06);

  border-radius: var(--radius);

  padding: var(--section-gap);

  max-width: 720px;

  margin: var(--section-gap) auto;

  box-sizing: border-box;

  overflow-x: hidden;

  transition: box-shadow 0.25s cubic-bezier(0.39,0,0.17,0.99), border 0.22s var(--transition);

  backdrop-filter: blur(0.5px);

  display: flex;

  flex-direction: column;

  gap: 0;

}



.content-wrapper-infocard527 {

  width: 100%;

  max-width: 100%;

  display: flex;

  flex-direction: column;

  box-sizing: border-box;

}



.text-content-infocard527 {

  color: var(--dark-default);

  font-size: 1.08rem;

  line-height: 1.65;

  letter-spacing: 0;

  font-weight: 400;

  max-width: 100%;

  padding: 0;

  margin: 0;

  box-sizing: border-box;

}



.text-content-infocard527 h2,

.text-content-infocard527 h3 {

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 1.1em;

  margin-top: 0;

  line-height: 1.18;

  letter-spacing: -0.012em;

}



.text-content-infocard527 h2 {

  font-size: 2rem;

}



.text-content-infocard527 h3 {

  font-size: 1.25rem;

  margin-top: 1.5em;

}



.text-content-infocard527 p {

  margin: 1.45em 0 1.55em 0;

}



.text-content-infocard527 ul,

.text-content-infocard527 ol {

  margin: 1em 0 1.5em 1.6em;

  padding: 0;

  list-style-position: outside;

  color: var(--dark-muted);

  font-size: 1em;

  line-height: 1.4;

}



.text-content-infocard527 ul {

  list-style-type: disc;

}



.text-content-infocard527 ol {

  list-style-type: decimal;

}



.text-content-infocard527 li {

  margin: 0.18em 0 0.18em 0;

  padding: 0;

}



.text-content-infocard527 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.22s var(--transition);

  word-break: break-all;

}

.text-content-infocard527 a:hover,

.text-content-infocard527 a:focus {

  color: var(--accent-hover);

  text-decoration: none;

}



.text-content-infocard527 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0 1.5em 0;

  overflow-x: auto;

  display: block;

}



.text-content-infocard527 thead {

  background: var(--accent-transparent);

}



.text-content-infocard527 th,

.text-content-infocard527 td {

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.18));

  padding: 0.6em 1em;

  text-align: left;

  color: var(--dark-default);

  font-size: 0.98em;

}



.text-content-infocard527 th {

  font-weight: 600;

  color: var(--accent);

}



.text-content-infocard527 b, .text-content-infocard527 strong {

  font-weight: 600;

  color: var(--primary);

}

.text-content-infocard527 i, .text-content-infocard527 em {

  font-style: italic;

}



@media (max-width: 1024px) {

  .content-block-infocard527 {

    padding: calc(var(--section-gap) * 0.7);

    max-width: 96vw;

  }

  .text-content-infocard527 h2 {

    font-size: 1.5rem;

  }

}



@media (max-width: 768px) {

  .content-block-infocard527 {

    padding: calc(var(--section-gap) * 0.55);

    margin: var(--page-gap-reduced) auto;

    max-width: 99vw;

    border-radius: calc(var(--radius) * 1.5);

    box-shadow: 0 2px 16px rgba(10,0,93,0.10);

  }

  .text-content-infocard527 {

    font-size: 0.97rem;

  }

  .text-content-infocard527 h2 {

    font-size: 1.13rem;

    margin-bottom: .85em;

  }

}





.content-block-infocard527, .text-content-infocard527, .content-wrapper-infocard527 {

  min-width: 0;

  max-width: 100vw;

}

/* DEFAULT/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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/blogpreview3.css */
/* ========= PROFILE BOX X71 ========= */

.profilebox_x71 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 48px;
  background: #fffdfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  border: 1px solid #eaeaea;
}

/* HEADER */

.pb71_header {
  position: relative;
  width: 100%;
}

.pb71_imgwrap {
  width: 100%;
  aspect-ratio: 5/3;
  background: #000;
  overflow: hidden;
}

.pb71_imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb71_name {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  background: rgba(20,20,20,0.58);
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 1.95rem;
}

/* CONTENT */

.pb71_content {
  padding: 26px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ABOUT TEXT */

.pb71_about {
  background: #fff3f3;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #ff698a;
}

/* GRID */

.pb71_grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 24px;
}

.pb71_cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.pb71_label {
  color: #ff3e6e;
  font-size: .83rem;
  font-weight: 600;
}

.pb71_value {
  display: block;
  margin-top: 4px;
  font-size: 1.17rem;
  font-weight: 800;
  color: #111;
}

/* BUTTON */

.pb71_btn {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(90deg,#ff2f6b,#ff7b2f);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  transition: .25s ease;
}

.pb71_btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width: 900px) {
  .pb71_grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pb71_name {
    font-size: 1.7rem;
  }
}

@media(max-width: 550px) {
  .pb71_grid {
    grid-template-columns: 1fr;
  }

  .pb71_name {
    font-size: 1.3rem;
    padding: 9px 12px;
  }

  .pb71_content {
    padding: 18px 20px 26px;
  }

  .pb71_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);
  }
}