/* 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: color5 */
:root {
    --primary: #ff0055;
    --primary-hover: #ff1469;
    --accent: #00ffee;
    --accent-hover: #14fff2;
    --accent-secondary: #28fff5;
    --accent-transparent: rgba(0, 255, 238, 0.3);
    --background: #1a0033;
    --header: #000000;
    --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;

}

body {

  margin: 0;

  padding: 0;

  overflow-x: hidden;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  color: var(--dark);

  background: var(--background);

}





.header-split {

  width: 100%;

  background: var(--header);

  box-shadow: var(--shadow);

  position: relative;

  z-index: 10;

}

.header-container {

  max-width: 1280px;

  margin: 0 auto;

  padding: calc(var(--page-gap) / 1.25) var(--page-gap);

  display: flex;

  justify-content: space-between;

  align-items: center;

  min-width: 0;

  position: relative;

  flex-wrap: wrap;

}

.logo-link {

  display: flex;

  align-items: center;

  min-width: 0;

  flex-shrink: 0;

}



.start-btn {

  padding: 12px 32px;

  background: linear-gradient(95deg, var(--primary), var(--accent));

  color: var(--light);

  border: none;

  outline: none;

  border-radius: calc(var(--radius) * 2);

  font-weight: 600;

  letter-spacing: 0.03em;

  font-size: 1.05rem;

  box-shadow: 0 3px 24px -4px var(--primary-hover);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.18s;

  cursor: pointer;

  position: relative;

  z-index: 1;

  will-change: transform, box-shadow;

  display: inline-block;

}

.start-btn:hover, .start-btn:focus-visible {

  background: linear-gradient(100deg, var(--primary-hover), var(--accent-hover) 90%);

  transform: translateY(-2px) scale(1.045);

  box-shadow: 0 7px 36px -6px var(--primary-hover);

}





.hero-split {

  display: flex;

  flex-wrap: wrap;

  max-width: 1280px;

  margin: 0 auto;

  min-height: clamp(480px, 58vw, 620px);

  gap: var(--page-gap);

  padding: var(--section-gap) var(--page-gap);

  align-items: stretch;

  position: relative;

}



.hero-content, .hero-image-block {

  flex: 1 1 0;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: center;

}



.hero-text-block {

  max-width: 520px;

  margin-right: auto;

  margin-left: 0;

  display: flex;

  flex-direction: column;

  gap: calc(var(--section-gap) / 2);

  z-index: 2;

  position: relative;

}

.hero-text-block h1 {

  font-size: clamp(2.2rem, 5vw, 3.2rem);

  margin: 0 0 24px 0;

  font-weight: 800;

  color: var(--accent);

  line-height: 1.14;

  letter-spacing: -0.02em;

  text-shadow: 0 2px 12px var(--accent-transparent);

}



.explore-btn {

  margin-top: 8px;

  display: inline-block;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  color: var(--light);

  font-weight: 700;

  font-size: 1.1rem;

  letter-spacing: 0.02em;

  border: 0;

  border-radius: var(--radius);

  padding: 16px 36px;

  cursor: pointer;

  text-decoration: none;

  box-shadow: 0 4px 24px -3px var(--primary-hover);

  position: relative;

  transition: var(--transition), box-shadow 0.2s;

  outline: none;

  will-change: transform, box-shadow;

  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);

}

.explore-btn:hover, .explore-btn:focus-visible {

  background: linear-gradient(100deg, var(--accent-hover), var(--primary-hover) 90%);

  color: var(--light);

  transform: translateY(-2px) scale(1.045);

  box-shadow: 0 10px 36px -4px var(--accent-hover);

}





.hero-image-block {

  display: flex;

  justify-content: flex-end;

  align-items: center;

  min-width: 0;

  position: relative;

}



.hero-image-wrapper {

  max-width: 480px;

  width: 100%;

  min-width: 0;

  min-height: 360px;

  aspect-ratio: 4 / 3;

  border-radius: calc(var(--radius) * 2.5);

  overflow: hidden;

  box-shadow: 0 8px 48px -12px var(--shadow);

  position: relative;

  display: flex;

  align-items: stretch;

  justify-content: flex-end;

  background: var(--accent-transparent);

  z-index: 1;

}

.hero-image-wrapper img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  filter: none;

  border-radius: inherit;

  transition: filter 0.20s cubic-bezier(.4,.7,.4,1);

  position: relative;

  z-index: 2;

  will-change: filter;

}

.hero-image-wrapper:hover img {

  filter: brightness(0.97) blur(2px) saturate(1.02);

}



.hero-gradient {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

  background: radial-gradient(ellipse at 70% 70%, var(--accent-transparent) 60%, transparent 100%);

  opacity: 0.88;

  mix-blend-mode: lighten;

}

.hero-overlay {

  content: "";

  position: absolute;

  inset: 0;

  z-index: 4;

  pointer-events: none;

  background: linear-gradient(120deg, rgba(0,0,0,0.15) 18%, rgba(0,0,0,0.18) 50%, transparent 95%);

  backdrop-filter: blur(2px) brightness(1.025);

  opacity: 0.8;

}







@media (max-width: 1024px) {

  .header-container {

    padding: var(--page-gap);

  }

  .hero-split {

    flex-direction: column;

    gap: var(--section-gap);

    min-height: 0;

    padding: calc(var(--section-gap) * 1.2) var(--page-gap);

  }

  .hero-content {

    align-items: flex-start;

  }

  .hero-image-block {

    justify-content: center;

    margin-top: 18px;

  }

  .hero-image-wrapper {

    max-width: 95vw;

    min-height: 220px;

    aspect-ratio: 4 / 3;

  }

}



@media (max-width: 768px) {

  .header-container {

    flex-direction: row;

    padding: var(--page-gap-reduced);

    gap: var(--page-gap-reduced);

  }

  .start-btn {

    padding: 11px 22px;

    font-size: 1rem;

  }

  .hero-split {

    flex-direction: column;

    gap: var(--page-gap);

    padding: var(--section-gap) var(--page-gap-reduced) 0 var(--page-gap-reduced);

  }

  .hero-text-block {

    max-width: 100%;

    align-items: flex-start;

    padding-bottom: var(--page-gap);

  }

  .hero-image-wrapper {

    min-height: 120px;

    aspect-ratio: 4/3;

  }

}



@media (max-width: 520px) {

  .header-container {

    flex-direction: row;

    padding: var(--page-gap-reduced) 2vw;

  }

  .start-btn {

    font-size: 0.97rem;

    padding: 7px 14px;

    letter-spacing: 0.01em;

  }

  .hero-split {

    padding: var(--page-gap-reduced) 2vw 0 2vw;

  }

  .hero-text-block {

    padding-bottom: var(--page-gap-reduced);

    gap: 13px;

  }

  .explore-btn {

    padding: 12px 18px;

    font-size: 1.02rem;

    border-radius: calc(var(--radius) * 1.6);

  }

  .hero-image-wrapper {

    min-height: 90px;

    max-width: 98vw;

    border-radius: calc(var(--radius) * 1.3);

  }

}





.start-btn:active, .explore-btn:active {

  transform: scale(0.97);

  filter: brightness(0.95);

}

/* FOOTER */
/* overlay */


.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}
.site-popup-overlay.visible {
  display: flex !important;
  opacity: 1 !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

.site-popup-panel{
  position: relative !important;
  background: var(--light) !important;
  border-radius: 12px !important;
  max-width: 900px !important;
  width: 100% !important;
  max-height: 85vh !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important; 
}

/* scrolling zone */
.site-popup-content{
  padding: 24px;
  overflow-y: auto;   
  overflow-x: hidden; 
}

/* close button */
.site-popup-close{
  position: absolute;
  right: 18px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  z-index: 10; 
}


@media (max-width: 600px) {
  .site-popup-panel{
    max-width: 100%;
    border-radius: 10px;
  }
  .site-popup-content{
    padding: 18px;
  }
}



.footer-block-elite937 {
  background: var(--header);
  text-align: center;
  box-shadow: var(--shadow);
  padding: var(--section-gap, 32px) 0;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-elite937-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-block-elite937 img { display: block; margin: 0 auto; }


.footer-links-inline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-popup-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.18s;
}

.footer-popup-btn:hover { color: var(--light); background: var(--accent); }

.footer-elite937-copyright {
  color: var(--dark);
  margin-top: var(--page-gap);
  opacity: 0;
  animation: elite937-fade-in 1s ease 0.2s forwards;
  font-size: 1rem;
  transition: opacity 0.3s var(--transition);
}

@keyframes elite937-fade-in { to { opacity: 1; } }

@media (max-width: 600px) {
  .footer-block-elite937 { padding: var(--page-gap) 0; }
  .footer-elite937-inner { padding: 0 var(--page-gap-reduced); }
  .footer-elite937-copyright { font-size: 0.95rem; }
}
.links-wrapper.links-block-category51 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}



.links-block-category51-title {

  font-size: 2.3rem;

  font-weight: 700;

  margin-bottom: 2.5rem;

  letter-spacing: -0.03em;

  color: var(--primary);

}



.links-block-category51-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 32px;

  margin: 0;

  padding: 0;

  list-style: none;

}



.links-block-category51-grid li {

  display: flex;

  

  align-items: stretch;

  width: 100%;

}



.links-block-category51-grid a {

  display: block;

  width: 100%;

  padding: 32px 24px;

  border-radius: var(--radius);

  background: linear-gradient(106deg, var(--accent) 60%, var(--primary) 100%);

  color: var(--light);

  font-size: 1.13rem;

  font-weight: 600;

  text-align: center;

  text-decoration: none;

  box-shadow: var(--shadow);

  transition:

    background 0.23s var(--transition),

    transform 0.2s var(--transition),

    box-shadow 0.23s var(--transition);

  will-change: transform, box-shadow;

  letter-spacing: 0.01em;

  outline: none;

  user-select: none;

}



.links-block-category51-grid a:hover,

.links-block-category51-grid a:focus {

  background: linear-gradient(106deg, var(--primary) 70%, var(--accent) 100%);

  color: var(--light);

  transform: translateY(-3px) scale(1.03);

  box-shadow: 0 6px 32px 0 rgba(49, 60, 150, 0.15), var(--shadow);

}



@media (max-width: 900px) {

  .links-block-category51-grid {

    gap: 20px;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  }

}



@media (max-width: 768px) {

  .links-block-category51-title {

    font-size: 1.3rem;

    margin-bottom: 1.1em;

  }



  .links-block-category51-grid {

    grid-template-columns: 1fr;

    gap: 14px;

  }



  .links-block-category51-grid li {

    width: 100%;

  }

  .links-block-category51-grid a {

    padding: 20px 16px;

    font-size: 1.05rem;

    width: 100%;

    max-width: 100%;

    min-width: 0;

  }

}



@media (max-width: 500px) {

  .links-wrapper.links-block-category51 {

    padding: 24px 5vw;

  }

}

/* BODY */
.content-block-blur92 {

  width: 100%;

  box-sizing: border-box;

  padding: var(--section-gap) 0;

  background: var(--background);

  overflow-x: hidden;

}



.content-wrapper-blend92 {

  max-width: 1120px;

  margin: 0 auto;

  display: flex;

  align-items: stretch;

  justify-content: space-between;

  gap: 48px;

  box-sizing: border-box;

  padding: 0 var(--page-gap);

}



.text-content--spark92 {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

}



.text-content--spark92 .text-content {

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.6;

  margin-bottom: 36px;

  font-feature-settings: "pnum" on, "lnum" on;

}



.text-content--spark92 .text-content h2,

.text-content--spark92 .text-content h3 {

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 18px;

  margin-top: 0;

  line-height: 1.18;

  letter-spacing: -0.01em;

}



.text-content--spark92 .text-content h3 {

  font-size: 1.15em;

}



.text-content--spark92 .text-content p {

  margin: 0 0 20px 0;

  color: var(--dark);

}



.text-content--spark92 .text-content ul,

.text-content--spark92 .text-content ol {

  padding-left: 24px;

  margin-bottom: 20px;

  color: var(--dark-muted);

  font-size: 1rem;

  line-height: 1.5;

}



.text-content--spark92 .text-content ul {

  list-style: disc;

}



.text-content--spark92 .text-content ol {

  list-style: decimal;

}



.text-content--spark92 .text-content li {

  margin-bottom: 8px;

}



.text-content--spark92 .text-content b,

.text-content--spark92 .text-content strong {

  color: var(--accent);

  font-weight: 700;

}



.text-content--spark92 .text-content i,

.text-content--spark92 .text-content em {

  color: var(--primary-hover);

  font-style: italic;

}



.text-content--spark92 .text-content a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.18s cubic-bezier(0.39,0,0.17,0.99);

}

.text-content--spark92 .text-content a:hover,

.text-content--spark92 .text-content a:focus {

  color: var(--primary-hover);

}



.text-content--spark92 .text-content table {

  width: 100%;

  border-collapse: collapse;

  font-size: 0.98em;

  margin-bottom: 18px;

  overflow-x: auto;

  display: block;

}

.text-content--spark92 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--spark92 .text-content th,

.text-content--spark92 .text-content td {

  padding: 8px 12px;

  border: 1px solid var(--dark-muted);

}

.text-content--spark92 .text-content th {

  color: var(--accent);

  font-weight: 600;

  text-align: left;

}

.text-content--spark92 .text-content td {

  color: var(--dark-default);

}



.cta-button--soft92.button {

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  font-weight: 600;

  font-size: 1.05em;

  display: inline-block;

  cursor: pointer;

  border: none;

  outline: none;

  max-width: max-content;

  transition: 

    background 0.18s cubic-bezier(0.39,0,0.17,0.99),

    box-shadow 0.18s, 

    transform 0.16s;

  text-decoration: none;

  margin-top: 6px;

  letter-spacing: 0.01em;

}

.cta-button--soft92.button:hover,

.cta-button--soft92.button:focus-visible {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.03);

  box-shadow: 0 4px 16px rgba(149,24,48,0.10);

}



.content-image--flare92 {

  flex: 0 0 320px;

  max-width: 320px;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  min-width: 0;

}

.content-image--flare92 img,

.content-image--flare92 { 

  width: 320px;

  height: 480px;

  object-fit: cover;

  border-radius: 20px;

  box-shadow: var(--shadow);

  background: var(--light);

  

  backdrop-filter: blur(0.5px);

  -webkit-backdrop-filter: blur(0.5px);

  

  position: relative;

  z-index: 1;

}





@media (max-width: 1024px) {

  .content-wrapper-blend92 {

    gap: 28px;

    padding: 0 var(--page-gap-reduced);

  }

  .content-image--flare92 {

    max-width: 240px;

    flex-basis: 220px;

  }

  .content-image--flare92 img,

  .content-image--flare92 {

    width: 220px;

    height: 330px;

  }

}



@media (max-width: 768px) {

  .content-wrapper-blend92 {

    flex-direction: column-reverse;

    align-items: stretch;

    gap: 26px;

  }

  .content-image--flare92 {

    align-items: flex-start;

    justify-content: center;

    max-width: none;

    flex-basis: auto;

    margin-bottom: 14px;

  }

  .content-image--flare92 img,

  .content-image--flare92 {

    width: 100%;

    height: auto;

    min-width: 0;

    max-width: 100%;

    aspect-ratio: 2/3;

    border-radius: 16px;

  }

  .text-content--spark92 {

    margin: 0;

  }

  .cta-button--soft92.button {

    width: auto;

    min-width: 120px;

    font-size: 1em;

  }

}





.content-block-blur92, .content-wrapper-blend92, .text-content--spark92, .content-image--flare92 {

  max-width: 100%;

  box-sizing: border-box;

}







body {

  overflow-x: hidden;

}

*/

/* DEFAULT/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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/blogpreview6.css */
/* ========== PROFILE UNIT K47 ========== */

.profileunit_k47 {
  max-width: 980px;
  margin: 0 auto 55px;
  background: #faf8ff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9e1ff;
  box-shadow: 0 10px 34px rgba(0,0,0,0.13);
}

/* HEADER */

.k47_header {
  position: relative;
}

.k47_photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #252525;
  overflow: hidden;
}

.k47_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k47_title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  padding: 14px 24px;
  background: rgba(40, 0, 80, 0.55);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

/* BODY */

.k47_body {
  padding: 30px 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* DESCRIPTION */

.k47_description {
  background: #f4edff;
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid #7d48ff;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #1b1b1b;
}

/* SPECS GRID */

.k47_specs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px 26px;
}

.k47_item {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e4dbff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.k47_label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #7340ff;
}

.k47_value {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
}

/* BUTTON */

.k47_button {
  display: block;
  text-align: center;
  padding: 17px 26px;
  background: linear-gradient(90deg,#7d48ff,#5218d6);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
}

.k47_button:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */

@media(max-width: 1100px) {
  .k47_specs {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 620px) {
  .k47_specs {
    grid-template-columns: 1fr;
  }
  .k47_title {
    font-size: 1.55rem;
    padding: 10px 14px;
  }
  .k47_body {
    padding: 20px 24px 28px;
  }
}

/* DEFAULT/blogindex2.css */
.profiledeck-shell92 {
  width: 100%;
  padding: 2.4rem 0 1.8rem;
  background: var(--light);
}

.profiledeck-head92 {
  font-size: 2.05rem;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(92deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 38px;
  letter-spacing: -0.015em;
}

.profiledeck-grid92 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem 1.2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0.6rem;
}
.profiledeck-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.profiledeck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

.profiledeck-thumb {
  width: 100%;
  height: 205px;
  object-fit: cover;
  filter: brightness(0.96) contrast(1.06);
  transition: filter .25s;
}

.profiledeck-card:hover .profiledeck-thumb {
  filter: none;
}

.profiledeck-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.profiledeck-name {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--dark);
}

.profiledeck-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.48;
  margin-bottom: 1rem;
  min-height: 52px;
}

.profiledeck-cta {
  display: inline-block;
  padding: 0.65em 1.18em;
  background: linear-gradient(91deg, var(--primary), var(--accent));
  border-radius: 8px;
  color: var(--light);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
  background: var(--primary);
  box-shadow: 0 6px 20px var(--primary-hover);
}

@media (max-width: 900px) {
  .profiledeck-head92 {
    font-size: 1.35rem;
  }
  .profiledeck-thumb {
    height: 190px;
  }
  .profiledeck-desc {
    font-size: 0.9rem;
    min-height: 44px;
  }
}
@media (max-width: 540px) {
  .profiledeck-grid92 {
    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);
  }
}