/* Custom: 1.css */
@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url(":r:icomoon.woff2") format("woff2");
}
header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: var(--section-gap);
}

body {
 font-family: var(--font-family-main) !important;
 font-weight: var(--font-weight-body) !important;
 font-size: var(--font-size-base) !important;
  background: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.content-container {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-container {
    padding-left: var(--page-gap-reduced);
    padding-right: var(--page-gap-reduced);
  }
    section > div > div,
  section > div > div > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px var(--page-gap-reduced);
  }



  ul, ol {
    padding-left: 16px;
  }
}

.breadcrumbs-section {
  width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
}

.breadcrumbs-list .breadcrumbs-list-item {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

.breadcrumbs-list .breadcrumbs-list-item:last-child {
  color: var(--primary);
}

.breadcrumbs-list .breadcrumbs-list-item a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list .breadcrumbs-list-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-list .breadcrumbs-list-item a::after {
  content: "";
  margin: 0 10px 0 10px;
  border: solid rgba(0, 0, 0, 0.25);
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  padding: 5px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--section-gap);
  margin: var(--page-gap) auto;
  max-width: 1200px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.sidebar-column {
  position: relative;
}
@media (max-width: 768px) {
 .layout-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-row: 1; 
  }

  .main-column {
    grid-row: 2;
  }
}

/* FAQ блок */
details {
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  transition: var(--transition);
  font-family: var(--font-family-main);
}

details[open] {
  background: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  color: var(--light);
  list-style: none;
  outline: none;
  transition: var(--transition);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  background: var(--primary-hover);
}

details[open] summary {
  background: var(--accent-hover);
}

details div {
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  color: var(--light);
  background: var(--accent-transparent);
  line-height: 1.6;
}

/* Color scheme: color11 */
:root {
    --primary: #6a0dad;
    --primary-hover: #7e2ac1;
    --accent: #ffcc00;
    --accent-hover: #ffd633;
    --accent-secondary: #ffe066;
    --accent-transparent: rgba(255, 204, 0, 0.3);
    --background: #f3e5f5;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
body {

  box-sizing: border-box;

  margin: 0;

  overflow-x: hidden;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

}

*,

*::before,

*::after {

  box-sizing: inherit;

}

.premium-header {

  width: 100%;

  z-index: 100;

  position: relative;

  box-shadow: var(--shadow);

  background: var(--header);

}

.ph-container {

  max-width: 1200px;

  margin: 0 auto;

  padding: calc(var(--page-gap) / 1.5) var(--page-gap);

  display: flex;

  align-items: center;

  justify-content: space-between;

  min-width: 0;

  flex-wrap: wrap;

}

.ph-logo img {

  display: block;

}



.ph-nav {

  display: flex;

  align-items: center;

}

.ph-menu {

  display: flex;

  gap: calc(var(--page-gap) * 0.8);

  margin: 0;

  padding: 0;

  list-style: none;

  transition: var(--transition);

}

.ph-menu li a {

  color: var(--accent);

  font-weight: 500;

  padding: 8px 18px;

  border-radius: var(--radius);

  font-size: 1rem;

  text-decoration: none;

  letter-spacing: 0.02em;

  transition: color 0.18s, background 0.20s, transform 0.25s var(--transition);

  position: relative;

}



.ph-menu li a:hover,

.ph-menu li a:focus-visible {

  background: var(--accent-transparent);

  color: var(--primary);

  text-decoration: none;

  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);

  transform: scale(1.06);

}



.ph-burger {

  display: none;

  flex-direction: column;

  justify-content: center;

  background: none;

  border: 0;

  padding: 10px 0 10px 18px;

  margin-left: 12px;

  cursor: pointer;

  z-index: 21;

}

.ph-burger span {

  display: block;

  width: 26px;

  height: 3px;

  margin: 4px 0;

  border-radius: 3px;

  background: var(--primary);

  transition: var(--transition);

}

.ph-burger.active span:nth-child(1) {

  transform: rotate(45deg) translate(5px, 6px);

}

.ph-burger.active span:nth-child(2) {

  opacity: 0;

}

.ph-burger.active span:nth-child(3) {

  transform: rotate(-45deg) translate(5px, -6px);

}





.premium-hero {

  background:

    linear-gradient(120deg, var(--accent-secondary) 0%, var(--accent-transparent) 100%);

  position: relative;

  padding: calc(var(--section-gap) * 1.3) 0 calc(var(--section-gap) * 0.7) 0;

  overflow: hidden;

}

.ph-hero-content {

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 55%;

  gap: calc(var(--page-gap) * 2) var(--page-gap);

  align-items: center;

  padding-left: var(--page-gap);

  padding-right: var(--page-gap);

  min-width: 0;

}

.ph-hero-text-wrap {

  z-index: 3;

  display: flex;

  flex-direction: column;

  gap: 36px;

}

.ph-hero-title {

  font-size: clamp(2.1rem, 4vw, 3.4rem);

  font-weight: 800;

  color: var(--accent);

  margin: 0 0 6px 0;

  letter-spacing: -0.01em;

  line-height: 1.16;

  text-shadow: 0 3px 18px rgba(0,0,0,0.08);

}

.ph-cta {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  background: linear-gradient(95deg, var(--primary), var(--primary-hover));

  color: var(--light);

  border: none;

  border-radius: calc(var(--radius) * 2);

  padding: 14px 32px 14px 28px;

  font-weight: 600;

  font-size: 1.18rem;

  line-height: 1.1;

  box-shadow: 0 6px 24px -2px rgba(0,0,0,0.13);

  cursor: pointer;

  transition: 

    box-shadow 0.18s var(--transition),

    transform 0.21s var(--transition),

    background 0.20s,

    filter 0.21s;

  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);

  position: relative;

  isolation: isolate;

  will-change: transform, box-shadow;

  outline: none;

  user-select: none;

}

.ph-cta .ph-cta-icon {

  display: flex;

  align-items: center;

  color: var(--light);

  font-size: 1.34em;

  transition: color 0.16s;

}

.ph-cta:hover, .ph-cta:focus-visible {

  background: linear-gradient(95deg, var(--primary-hover), var(--primary));

  color: var(--light);

  box-shadow: 0 10px 32px -6px var(--shadow), 0 2px 8px 0 rgba(0,0,0,0.12);

  transform: scale(1.04) translateY(-2px);

  filter: brightness(1.03);

}

.ph-cta:active {

  transform: scale(0.98) translateY(2px);

  filter: brightness(0.97);

}



.ph-hero-img-wrap {

  display: flex;

  justify-content: flex-end;

  align-items: center;

  min-width: 0;

}

.ph-img-border {

  border-radius: calc(var(--radius) * 3);

  position: relative;

  overflow: hidden;

  box-shadow:

    0 8px 32px 0 rgba(0,0,0,0.13),

    0 1.5px 14px 0 var(--shadow);

  border: 4px solid var(--accent-secondary);

  background: linear-gradient(120deg, var(--accent-transparent), white 60%);

  aspect-ratio: 16/10;

  max-width: 510px;

  width: 100%;

}

.ph-img-border img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  filter: saturate(1.12);

  border-radius: inherit;

  z-index: 1;

  position: relative;

}

.ph-img-overlay {

  position: absolute;

  z-index: 2;

  inset: 0;

  pointer-events: none;

  background: linear-gradient(128deg, rgba(10,0,93,0.19) 6%, rgba(0,0,0,0.15) 90%);

  backdrop-filter: blur(0px) brightness(0.98);

  mix-blend-mode: multiply;

}





@media (max-width: 1024px) {

  .ph-hero-content {

    grid-template-columns: 1fr;

    gap: var(--section-gap) 0;

    place-items: center;

    text-align: center;

    padding-left: calc(var(--page-gap) / 2);

    padding-right: calc(var(--page-gap) / 2);

  }

  .ph-hero-img-wrap { justify-content: center; margin-top: var(--page-gap); }

}

@media (max-width: 820px) {

  .ph-menu {

    gap: 18px;

  }

  .ph-container {

    padding: calc(var(--page-gap) / 2) var(--page-gap-reduced);

  }

  .premium-hero {

    padding: calc(var(--section-gap) / 1.5) 0;

  }

}

@media (max-width: 768px) {

  .ph-container {

    flex-wrap: wrap;

  }

  .ph-menu {

    position: fixed;

    top: 60px;

    right: 0;

    width: 80vw;

    max-width: 340px;

    flex-direction: column;

    gap: 0;

    background: var(--header);

    box-shadow: 0 6px 32px -7px var(--shadow);

    border-top-left-radius: var(--radius);

    border-bottom-left-radius: var(--radius);

    padding: 28px 0 24px 0;

    z-index: 121;

    transform: translateX(110%);

    opacity: 0;

    pointer-events: none;

    transition: transform 0.32s var(--transition), opacity 0.22s;

  }

  .ph-menu.open {

    transform: translateX(0);

    opacity: 1;

    pointer-events: all;

  }

  .ph-menu li {

    text-align: left;

    margin: 10px 24px;

  }

  .ph-menu li a {

    display: block;

    padding: 14px 0;

    font-size: 1.05rem;

    border-radius: var(--radius);

  }

  .ph-burger {

    display: flex;

  }

  .ph-nav {

    align-items: center;

  }

}

@media (max-width: 540px) {

  .ph-hero-content,

  .ph-container {

    padding-left: var(--page-gap-reduced);

    padding-right: var(--page-gap-reduced);

  }

  .ph-hero-title {

    font-size: 1.42rem;

  }

  .ph-cta {

    width: 100%;

    justify-content: center;

    padding: 14px 0;

    font-size: 1rem;

  }

  .ph-img-border {

    max-width: 98vw;

    min-width: 0;

    border-width: 2.5px;

  }

}

/* FOOTER */
/* overlay */

.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
.site-popup-overlay.visible {
  display: flex !important;
  opacity: 1 !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
/* scrolling zone */
.site-popup-content{
  padding: 24px;
  overflow-y: auto;   
  overflow-x: hidden; 
}

/* close button */
.site-popup-close{
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  z-index: 10; 
}


@media (max-width: 600px) {
  .site-popup-panel{
    max-width: 100%;
    border-radius: 10px;
  }
  .site-popup-content{
    padding: 18px;
  }
}



.footer-block-elite937 {
  background: var(--header);
  text-align: center;
  box-shadow: var(--shadow);
  padding: var(--section-gap, 32px) 0;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-elite937-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-block-elite937 img { display: block; margin: 0 auto; }


.footer-links-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-popup-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.18s;
}

.footer-popup-btn:hover { color: var(--light); background: var(--accent); }

.footer-elite937-copyright {
  color: var(--dark);
  margin-top: var(--page-gap);
  opacity: 0;
  animation: elite937-fade-in 1s ease 0.2s forwards;
  font-size: 1rem;
  transition: opacity 0.3s var(--transition);
}

@keyframes elite937-fade-in { to { opacity: 1; } }

@media (max-width: 600px) {
  .footer-block-elite937 { padding: var(--page-gap) 0; }
  .footer-elite937-inner { padding: 0 var(--page-gap-reduced); }
  .footer-elite937-copyright { font-size: 0.95rem; }
}

.links-wrapper.links-block-explore789 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap, 40px 24px);

}



.links-block-explore789-title {

  font-size: 2rem;

  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 32px;

  color: var(--accent, #8f66ff);

  letter-spacing: -0.02em;

}





.links-block-explore789-list {

  display: grid;

  grid-template-columns: repeat(2, minmax(220px, 1fr));

  gap: 24px;

  list-style: none;

  padding: 0;

  margin: 0;

}



.links-block-explore789-list li {

  margin: 0;

  padding: 0;

}





.links-block-explore789-list a {

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 14px 24px;

  background: rgba(var(--primary-rgb, 0,0,0), 0.04);

  border: 1.5px solid var(--accent-transparent, #ccc);

  border-radius: var(--radius, 14px);

  color: var(--primary, #24242c);

  font-weight: 500;

  font-size: 1.08rem;

  text-decoration: none;

  transition:

      background 0.22s var(--transition, ease),

      color 0.22s var(--transition, ease),

      border-color 0.2s var(--transition, ease),

      box-shadow 0.22s var(--transition, ease),

      transform 0.18s var(--transition, cubic-bezier(.25,.8,.25,1));

  box-shadow: 0 0 0 transparent;

  box-sizing: border-box;

  cursor: pointer;

  min-width: 0;

  position: relative;

}





.links-block-explore789-list a::before {

  content: "";

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 28px;

  height: 28px;

  margin-right: 16px;

  border-radius: 50%;

  background: var(--accent-transparent, rgba(140,100,255,0.13));

  

  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="7" fill="%238f66ff"/></svg>');

  background-repeat: no-repeat;

  background-position: center;

  background-size: 18px 18px;

  flex-shrink: 0;

  transition: background 0.22s var(--transition, ease), filter 0.22s var(--transition, ease);

}





.links-block-explore789-list a:hover,

.links-block-explore789-list a:focus-visible {

  background: var(--primary, #24242c);

  color: var(--light, #fff);

  border-color: var(--accent, #8f66ff);

  box-shadow: 0 6px 22px -8px var(--shadow, rgba(30,20,80,0.13));

  transform: translateY(-2px) scale(1.025);

}



.links-block-explore789-list a:hover::before,

.links-block-explore789-list a:focus-visible::before {

  background: var(--accent, #8f66ff);

  

  background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="7" fill="white"/></svg>');

  filter: drop-shadow(0 2px 6px rgba(140,100,255,0.16));

}





@media (max-width: 900px) {

  .links-block-explore789-list {

    grid-template-columns: 1fr;

    gap: 18px;

  }

  .links-block-explore789-title {

    margin-bottom: 20px;

    font-size: 1.5rem;

  }

}



@media (max-width: 600px) {

  .links-wrapper.links-block-explore789 {

    padding: 24px 8px;

  }

  .links-block-explore789-list {

    grid-template-columns: 1fr;

    gap: 13px;

  }

  .links-block-explore789-list a {

    width: 100%;

    justify-content: center;

    font-size: 1rem;

    padding: 12px 14px;

  }

  .links-block-explore789-list a::before {

    margin-right: 10px;

  }

}

/* BODY */
.content-block-overlay39 {

  background: var(--accent-transparent);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  padding: 0;

  overflow-x: hidden;

  max-width: 100vw;

}



.content-wrapper-overlay39 {

  display: flex;

  align-items: stretch;

  gap: 40px;

  max-width: 1100px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 40px 32px;

}



.content-image--flare39 {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  position: relative;

}



.image-overlay--blend39 {

  position: relative;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: 0 4px 32px rgba(10, 0, 93, 0.09);

  min-width: 0;

  min-height: 0;

  display: flex;

}



.image-overlay--blend39::before {

  content: '';

  position: absolute;

  inset: 0;

  background: rgba(10, 0, 93, 0.16);

  pointer-events: none;

  backdrop-filter: blur(0.5px);

  z-index: 1;

  border-radius: var(--radius);

}



.image-overlay--blend39 img,

.image-overlay--blend39 > *:not(:first-child) {

  position: relative;

  z-index: 2;

  max-width: 320px;

  width: 100%;

  height: auto;

  aspect-ratio: 2/3;

  object-fit: cover;

  border-radius: var(--radius);

  display: block;

}



.text-content--spark39 {

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

  flex: 1 1 0%;

}



.text-content--spark39 .text-content {

  color: var(--dark);

  font-size: 1.16rem;

  line-height: 1.6;

  max-width: 650px;

  font-weight: 400;

  min-width: 0;

}

.text-content--spark39 .text-content h2,

.text-content--spark39 .text-content h3 {

  color: var(--primary);

  margin-bottom: 0.6em;

  font-weight: 700;

  line-height: 1.15;

}

.text-content--spark39 .text-content ul,

.text-content--spark39 .text-content ol {

  margin: 1.2em 0;

  padding-left: 1.4em;

}

.text-content--spark39 .text-content ul {

  list-style-type: disc;

}

.text-content--spark39 .text-content ol {

  list-style-type: decimal;

}

.text-content--spark39 .text-content li {

  margin-bottom: 0.5em;

  padding-left: 0.1em;

}

.text-content--spark39 .text-content a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

  font-weight: 500;

}

.text-content--spark39 .text-content a:hover {

  color: var(--accent-hover);

}

.text-content--spark39 .text-content table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  border-radius: var(--radius);

  margin: 1.2em 0;

  overflow-x: auto;

  box-shadow: 0 1px 6px rgba(0,0,0,0.07);

  background: var(--light);

}

.text-content--spark39 .text-content th,

.text-content--spark39 .text-content td {

  border: 1px solid var(--accent-secondary, #ABA1FB);

  padding: 0.75em 1em;

  text-align: left;

  font-size: 1em;

  color: var(--dark);

}

.text-content--spark39 .text-content th {

  background: var(--accent-transparent);

  font-weight: 600;

}

.text-content--spark39 .text-content tr:nth-child(even) td {

  background: #f6f6fb;

}

.text-content--spark39 .text-content b, 

.text-content--spark39 .text-content strong {

  font-weight: bold;

}

.text-content--spark39 .text-content i,

.text-content--spark39 .text-content em {

  font-style: italic;

}



@media (max-width: 1024px) {

  .content-wrapper-overlay39 {

    gap: 28px;

    padding: 32px 16px;

  }

  .image-overlay--blend39 img {

    max-width: 240px;

  }

  .text-content--spark39 .text-content {

    font-size: 1.08rem;

  }

}



@media (max-width: 768px) {

  .content-wrapper-overlay39 {

    flex-direction: column;

    gap: 24px;

    padding: 24px 8px;

    align-items: flex-start;

  }

  .content-image--flare39,

  .image-overlay--blend39 {

    width: 100%;

    max-width: 350px;

    margin: 0 auto;

  }

  .image-overlay--blend39 img {

    width: 100%;

    max-width: 100%;

    height: auto;

    min-width: 0;

  }

  .text-content--spark39 .text-content {

    max-width: 100%;

    font-size: 1rem;

  }

}



@media (max-width: 480px) {

  .content-wrapper-overlay39 {

    padding: 16px 3vw;

    gap: 16px;

  }

  .image-overlay--blend39 img {

    max-width: 100vw;

    min-width: 0;

    border-radius: var(--radius);

  }

}

/* DEFAULT/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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex5.css */
.profiledeckzone-wrap {
  width: 100%;
  padding: 2.8rem 0 1.4rem;
  background: var(--light);
}

.profiledeckzone-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2.2rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px var(--accent-transparent);
}

.profiledeckzone-grid {
  display: grid;
  gap: 2.1rem 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.profiledeck-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--accent-transparent);
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 46px rgba(0,0,0,.14);
}


.profiledeck-thumb {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
  filter: brightness(.94) contrast(1.1);
  transition: filter .18s ease;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
}

.profiledeck-name {
  font-size: 1.26rem;
  font-weight: 800;
  margin-bottom: .55rem;
  color: var(--primary-dark);
}

.profiledeck-desc {
  color: var(--gray-700);
  font-size: 0.96rem;
  margin-bottom: 1rem;
  line-height: 1.44;
  min-height: 54px;
}

.profiledeck-cta {
  align-self: flex-start;
  display: inline-block;
  padding: .65rem 1.15rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: .98rem;
  transition: opacity .18s ease, box-shadow .18s ease;
}

.profiledeck-cta:hover {
  opacity: .88;
  box-shadow: 0 7px 18px var(--primary-transparent);
}

@media (max-width: 900px) {
  .profiledeckzone-title {
    font-size: 1.4rem;
  }
  .profiledeck-thumb {
    height: 185px;
  }
  .profiledeck-name {
    font-size: 1.09rem;
  }
  .profiledeck-desc {
    font-size: .89rem;
  }
  .profiledeck-cta {
    padding: .5rem .85rem;
    font-size: .87rem;
  }
}
@media (max-width: 540px) {
  .profiledeckzone-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink10.css */
.links-block-emerald29 {



  width: 100%;



  max-width: 320px;



  margin: 0 auto var(--section-gap);



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



  box-sizing: border-box;



}











.links-title-emerald29 {



  font-size: var(--font-size-h3);



  font-weight: 800;



  color: var(--primary);



  margin-bottom: 1rem;



  letter-spacing: -0.012em;



  position: relative;



}



.links-title-emerald29::after {



  content: "";



  display: block;



  width: 38px;



  height: 3px;



  background: var(--accent);



  margin-top: 0.48rem;



  border-radius: 3px;



  opacity: .92;



}











.links-wrapper-emerald29 {



  display: flex;



  flex-direction: column;



  gap: var(--page-gap);



}











.link-item-emerald29 .with-image a {



  display: flex;



  flex-direction: column;



  position: relative;



  border-radius: var(--radius-xl);



  overflow: hidden;



  background: none;



  text-decoration: none;



  color: var(--light);



  font-weight: 700;



  font-size: var(--font-size-base);



  transition: transform 0.25s, box-shadow 0.25s;



  box-shadow: 0 4px 10px var(--shadow);



  z-index: 2;



  isolation: isolate;



}



.link-item-emerald29 .with-image a:hover {



  transform: translateY(-2px) scale(1.018);



  box-shadow: 0 7px 16px var(--shadow);



}











.links-imagebox-emerald29 {



  width: 100%;



  aspect-ratio: 4/2.4;



  background: var(--header);



  display: flex;



  align-items: center;



  justify-content: center;



  border-top-left-radius: var(--radius-xl);



  border-top-right-radius: var(--radius-xl);



  overflow: hidden;



}











.links-imagebox-emerald29 img {



  width: 100%;



  height: 100%;



  object-fit: contain;



  display: block;



  background: none;



  



}











.link-item-emerald29 .with-image a {



  padding: 0.75rem 1rem;



  position: relative;



  min-height: 48px;



  align-items: flex-start;



  justify-content: flex-end;



  color: var(--light);



  z-index: 1;



  background: none;



}











.link-item-emerald29 .with-image a::before {



  content: "";



  position: absolute;



  left: 0;



  bottom: 0;



  width: 100%;



  height: 100%;



  background: var(--primary-hover);



  clip-path: polygon(0 75%, 100% 68%, 100% 100%, 0 100%);



  z-index: -1;



  transition: background 0.2s;



}



.link-item-emerald29 .with-image a:hover::before {



  background: var(--primary);



}











@media (max-width: 768px) {



  .links-block-emerald29 {



    max-width: 100%;



    gap: var(--page-gap-reduced);



  }



  .links-title-emerald29 {



    font-size: var(--font-size-base);



  }



  .links-wrapper-emerald29 {



    gap: var(--page-gap-reduced);



  }



  .link-item-emerald29 .with-image a {



    font-size: var(--font-size-sm);



    padding: 0.5rem 0.7rem;



    min-height: 36px;



  }



  .links-imagebox-emerald29 {



    aspect-ratio: 5/3.2;



    min-height: 80px;



  }



}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}