/* 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: color17 */
:root {
    --primary: #4169e1;
    --primary-hover: #5c7ef2;
    --accent: #ff69b4;
    --accent-hover: #ff80c0;
    --accent-secondary: #ff96cb;
    --accent-transparent: rgba(255, 105, 180, 0.3);
    --background: #f0f8ff;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
*,

*::before,

*::after {

  box-sizing: border-box;

}



body {

  margin: 0;

  padding: 0;

  overflow-x: hidden;

}



.splendid-header {

  position: relative;

  width: 100%;

  background: var(--header);

  box-shadow: var(--shadow);

  z-index: 10;

}



.header-inner {

  max-width: 1280px;

  margin: 0 auto;

  padding: calc(var(--page-gap) * 0.8) var(--page-gap);

  display: flex;

  align-items: center;

  justify-content: space-between;

  min-width: 0;

  gap: 2vw;

}



.logo-link {

  min-width: 120px;

  display: flex;

  align-items: center;

  z-index: 2;

}



.header-cta {

  background: linear-gradient(90deg, var(--primary), var(--accent));

  color: var(--light);

  font-weight: 600;

  text-decoration: none;

  font-size: 1.09rem;

  padding: 0.75em 2.2em;

  border-radius: calc(var(--radius) * 1.75);

  box-shadow: 0 2px 24px 2px rgba(38,23,55,.08);

  transition: var(--transition), box-shadow 0.19s cubic-bezier(.31,1.37,.62,.74);

  position: relative;

  overflow: hidden;

  outline: none;

  border: none;

  cursor: pointer;

  display: inline-block;

  will-change: transform;

}

.header-cta::after {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(120deg, var(--primary-hover) 25%, transparent 70%);

  opacity: 0;

  transition: opacity .24s;

  z-index: 1;

  border-radius: inherit;

}

.header-cta:hover,

.header-cta:focus-visible {

  background: linear-gradient(90deg, var(--primary-hover) 85%, var(--accent-hover));

  transform: scale(1.0405);

  box-shadow: 0 6px 28px 6px rgba(38,23,55,.14);

}

.header-cta:hover::after { opacity: 0.28; }



.split-hero {

  display: flex;

  align-items: stretch;

  justify-content: center;

  max-width: 1440px;

  margin: 0 auto;

  padding: min(8vw, var(--section-gap)) 0 max(6vw, var(--section-gap));

  gap: clamp(30px, 5vw, 88px);

  position: relative;

  min-height: 450px;

}

.hero-content {

  flex: 1.02 1 53%;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  min-width: 0;

  z-index: 2;

}

.hero-txt-wrapper {

  max-width: 480px;

  width: 100%;

  padding: 0 var(--page-gap-reduced);

  display: flex;

  flex-direction: column;

  gap: clamp(22px, 4vw, 38px);

  animation: fadeInLeft 0.8s 0.18s backwards;

}

.split-hero-title {

  font-size: clamp(2.1rem, 5vw, 3.4rem);

  font-weight: 800;

  line-height: 1.06;

  color: var(--accent);

  letter-spacing: -1px;

  margin: 0 0 14px 0;

  text-shadow: 0 2px 8px rgba(20,20,55,0.04);

  transition: color var(--transition);

}

.hero-btn {

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  font-weight: 600;

  font-size: 1.07rem;

  padding: 0.85em 2.25em;

  border-radius: var(--radius);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.2s cubic-bezier(.41,1.23,.46,.88);

  box-shadow: 0 2px 16px 2px rgba(32,13,63,0.09);

  border: none;

  cursor: pointer;

  position: relative;

  overflow: hidden;

  outline: none;

}

.hero-btn::before {

  content: "";

  position: absolute;

  inset: 0 0 0 0;

  background: linear-gradient(120deg, var(--primary-hover) 15%, transparent 70%);

  opacity: 0;

  border-radius: inherit;

  z-index: 1;

  transition: opacity .19s;

}

.hero-btn:hover,

.hero-btn:focus-visible {

  background: var(--primary-hover);

  transform: scale(1.045);

  box-shadow: 0 6px 25px 4px rgba(32,13,83,0.16);

}

.hero-btn:hover::before { opacity: 0.19; }



.hero-img-side {

  flex: 1 1 47%;

  min-width: 240px;

  max-width: 56vw;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  z-index: 0;

  overflow: visible;

}

.hero-img-side img {

  display: block;

  width: 100%;

  height: min(52vw, 440px);

  max-width: 580px;

  object-fit: cover;

  border-radius: calc(var(--radius) * 2.5);

  box-shadow: 0 7px 35px 0 rgba(20,13,37,0.18);

  z-index: 2;

  position: relative;

  filter: none;

  transition: filter 0.22s;

}

.hero-img-side img:hover {

  filter: brightness(.98) saturate(1.09) blur(2px);

}

.hero-img-overlay {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: 0;

  border-radius: calc(var(--radius) * 2.5);

  background:

    linear-gradient(90deg, rgba(0,0,0,.14) 5%, rgba(255,255,255,0) 80%),

    linear-gradient(125deg, var(--accent-transparent) 55%,transparent 90%);

  z-index: 1;

  pointer-events: none;

  mix-blend-mode: multiply;

}



@media (max-width: 1100px) {

  .split-hero {

    flex-direction: column-reverse;

    gap: clamp(22px, 3.4vw, 44px);

    align-items: stretch;

    padding: min(9vw, var(--section-gap)) var(--page-gap) max(6vw, var(--section-gap));

    min-height: 0;

  }

  .hero-content {

    justify-content: flex-start;

    align-items: flex-start;

    min-width: 0;

  }

  .hero-img-side {

    max-width: 98vw;

    margin: 0 auto;

    min-width: 0;

    justify-content: center;

  }

  .hero-img-side img {

    width: 100%;

    height: 40vw;

    min-height: 180px;

    max-width: 100vw;

  }

}



@media (max-width: 768px) {

  .header-inner {

    flex-wrap: wrap;

    padding: calc(var(--page-gap) * 0.6) var(--page-gap-reduced);

    gap: 8vw;

  }

  .split-hero {

    padding: max(24px, 8vw) 0 0;

    gap: 33px;

    min-height: 0;

  }

  .hero-txt-wrapper {

    padding: 0 var(--page-gap-reduced);

  }

  .split-hero-title {

    font-size: clamp(1.5rem, 7vw, 2.15rem);

  }

}



@media (max-width: 480px) {

  .split-hero {

    padding-top: 14vw;

    gap: 22px;

  }

  .header-cta {

    font-size: 0.98rem;

    padding: 0.72em 1.7em;

  }

  .hero-btn {

    font-size: 1rem;

    padding: 0.75em 1.6em;

  }

  .hero-txt-wrapper {

    gap: 19px;

  }

}

@keyframes fadeInLeft {

  from { opacity: 0; transform: translateX(-60px);}

  to { opacity: 1; transform: none;}

}

/* 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-popular21 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  box-sizing: border-box;

}



.links-block-popular21-title {

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 2rem;

  color: var(--dark);

  letter-spacing: -0.01em;

}



.links-block-popular21-list {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-wrap: wrap;

  gap: 20px 18px;

  justify-content: flex-start;

  

  max-width: 100%;

}





.links-block-popular21-list li {

  margin: 0;

  padding: 0;

}



.links-block-popular21-list a {

  display: inline-block;

  padding: 10px 26px;

  border-radius: var(--radius);

  background: var(--primary);

  color: var(--light);

  font-size: 1.05rem;

  font-weight: 500;

  text-decoration: none;

  box-shadow: 0 2px 18px 0 var(--shadow,rgba(0,0,0,0.09));

  transition: 

    background 0.22s var(--transition,cubic-bezier(0.4,0,0.2,1)), 

    box-shadow 0.22s var(--transition),

    transform 0.15s var(--transition);

  min-width: 110px;

  max-width: max-content;

  white-space: nowrap;

  vertical-align: middle;

  

  

}



.links-block-popular21-list a:hover,

.links-block-popular21-list a:focus {

  background: var(--accent);

  color: var(--light);

  box-shadow: 0 6px 24px 0 var(--shadow,rgba(0,0,0,0.16));

  transform: translateY(-3px) scale(1.04);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .links-wrapper.links-block-popular21 {

    padding: 32px 12px;

  }

  .links-block-popular21-title {

    font-size: 1.4rem;

    margin-bottom: 1.1rem;

  }

}



@media (max-width: 768px) {

  .links-block-popular21-list {

    flex-wrap: wrap;

    gap: 16px 12px;

    justify-content: flex-start;

  }

  .links-block-popular21-list a {

    display: block;

    width: 100%;

    min-width: unset;

    max-width: 100%;

    padding: 12px 7px;

    text-align: left;

    font-size: 1rem;

  }

}

/* BODY */
.content-block-frame157 {

  box-sizing: border-box;

  width: 100%;

  max-width: 1240px;

  margin: 0 auto;

  padding: var(--section-gap) var(--page-gap);

  background: var(--light);

  overflow-x: hidden;

}



.content-wrapper-gradient157 {

  display: flex;

  align-items: center;

  gap: 46px;

  max-width: 100%;

  box-sizing: border-box;

}



.content-image--borderflare157 {

  flex: 0 0 auto;

  display: flex;

  justify-content: center;

  align-items: center;

  border: 4px solid; 

  border-image: linear-gradient(140deg, var(--primary), var(--accent), var(--accent-secondary), var(--primary)) 1;

  border-radius: 18px;

  background: var(--light);

  box-shadow: 0 4px 24px var(--accent-transparent), var(--shadow);

  overflow: hidden;

  min-width: 0;

  transition: box-shadow 0.3s var(--transition), transform 0.24s var(--transition);

}



.content-image--borderflare157 img,

.content-image--borderflare157 > img {

  display: block;

  width: 320px;

  height: 480px;

  object-fit: cover;

  border-radius: 14px;

  filter: none;

  transition: filter 0.22s var(--transition), transform 0.24s var(--transition);

  background: var(--accent-transparent);

  box-shadow: 0 2px 12px var(--dark-muted);

}



.content-image--borderflare157:hover,

.content-image--borderflare157:focus-within {

  box-shadow: 0 8px 32px var(--accent-transparent), 0 2px 24px var(--shadow), 0 0 0 4px var(--accent-secondary);

  transform: translateY(-4px) scale(1.015);

}



.content-image--borderflare157:hover img,

.content-image--borderflare157:focus-within img {

  filter: brightness(1.04) contrast(1.05) saturate(1.05) drop-shadow(0 2px 8px var(--accent-transparent));

  transform: scale(1.016) rotate(-1deg);

}



.text-content--spark157 {

  flex: 1 1 0;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 32px;

  position: relative;

}



.text-content--spark157 .text-content {

  font-family: inherit;

  color: var(--dark);

  line-height: 1.68;

  font-size: 1.1rem;

  letter-spacing: 0.02em;

  padding-bottom: 8px;

}



.text-content--spark157 h2,

.text-content--spark157 h3 {

  color: var(--accent);

  margin-bottom: 14px;

  font-weight: 700;

  letter-spacing: 0.01em;

}



.text-content--spark157 h2 {

  font-size: 2.2rem;

}



.text-content--spark157 h3 {

  font-size: 1.3rem;

}



.text-content--spark157 p {

  margin-bottom: 12px;

  color: var(--dark-default);

  font-size: 1.12rem;

}



.text-content--spark157 ul,

.text-content--spark157 ol {

  margin: 0 0 16px 18px;

  padding-left: 20px;

  color: var(--dark-default);

}



.text-content--spark157 ul {

  list-style: disc inside;

}



.text-content--spark157 ol {

  list-style: decimal inside;

}



.text-content--spark157 li {

  margin-bottom: 6px;

  padding-left: 4px;

  line-height: 1.5;

}



.text-content--spark157 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s var(--transition);

}



.text-content--spark157 a:hover,

.text-content--spark157 a:focus {

  color: var(--accent);

  text-decoration: underline wavy var(--primary-hover) 2px;

}



.text-content--spark157 table {

  width: 100%;

  border-collapse: separate;

  border-spacing: 0;

  margin: 14px 0 16px 0;

  background: var(--background);

  border-radius: 4px;

  overflow-x: auto;

  box-shadow: 0 2px 8px var(--accent-transparent);

}



.text-content--spark157 thead {

  background: var(--accent-transparent);

  color: var(--accent);

}



.text-content--spark157 th,

.text-content--spark157 td {

  border: 1px solid var(--accent-secondary);

  padding: 7px 10px;

  text-align: left;

  color: var(--dark-default);

  font-size: 1rem;

}



.text-content--spark157 th {

  font-weight: 600;

}



.text-content--spark157 td {

  background: var(--light);

}



.cta-button--soft157.button {

  display: inline-block;

  margin-top: 12px;

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  box-shadow: 0 2px 16px var(--accent-transparent);

  font-weight: 700;

  font-size: 1.1rem;

  cursor: pointer;

  text-decoration: none;

  text-align: center;

  transition: background 0.25s var(--transition),

              box-shadow 0.26s var(--transition),

              transform 0.21s var(--transition),

              letter-spacing 0.18s;

  will-change: background, box-shadow, transform;

  position: relative;

  z-index: 2;

  min-width: max-content;

  max-width: 100%;

}



.cta-button--soft157.button:hover,

.cta-button--soft157.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 4px 32px var(--primary-hover), 0 2px 28px var(--accent-transparent);

  transform: translateY(-2px) scale(1.025);

  letter-spacing: 0.5px;

}



.cta-button--soft157.button:active {

  transform: scale(0.98);

  background: var(--accent);

  box-shadow: 0 1px 12px var(--accent-transparent);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient157 {

    gap: 28px;

  }

  .content-image--borderflare157 img,

  .content-image--borderflare157 > img {

    width: 220px;

    height: 330px;

  }

}



@media (max-width: 768px) {

  .content-block-frame157 {

    padding: var(--section-gap) var(--page-gap-reduced);

  }

  .content-wrapper-gradient157 {

    flex-direction: column;

    align-items: flex-start;

    gap: 26px;

  }

  .content-image--borderflare157,

  .content-image--borderflare157 img,

  .content-image--borderflare157 > img {

    width: 100%;

    min-width: 0;

    max-width: 320px !important;

    min-height: 180px !important;

    height: auto;

    margin: 0 auto;

    border-radius: 11px;

  }

  .text-content--spark157 {

    width: 100%;

    padding-left: 0;

    gap: 18px;

  }

  .cta-button--soft157.button {

    width: max-content;

    min-width: 0;

    margin: 20px 0 0 0;

    align-self: flex-start;

  }

  .text-content--spark157 table {

    font-size: 0.93rem;

    overflow-x: auto;

    display: block;

  }

}



@media (max-width: 480px) {

  .content-block-frame157 {

    padding: var(--section-gap) 7px;

  }

  .content-image--borderflare157 img,

  .content-image--borderflare157 > img {

    max-width: 100% !important;

    height: auto;

    min-height: 120px !important;

  }

  .text-content--spark157 h2 {

    font-size: 1.38rem;

  }

  .text-content--spark157 h3 {

    font-size: 1.04rem;

  }

}

.ripple157 {

  position: absolute;

  border-radius: 50%;

  transform: scale(0);

  animation: ripple-anim157 0.6s linear forwards;

  background: rgba(255,255,255,0.32);

  pointer-events: none;

  z-index: 9;

}



@keyframes ripple-anim157 {

  to {

    transform: scale(2.7);

    opacity: 0;

  }

}

/* DEFAULT/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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    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/blogindex3.css */
.matchsuite-section {
    width: 100%;
    padding: 2.6rem 0 3rem;
    box-sizing: border-box;
    background: var(--light);
}

.matchsuite-heading {
    font-size: 2.1rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.4rem;
    background: linear-gradient(120deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.015em;
}

.matchsuite-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem 1.2rem;
    padding: 0 1rem;
}

.profiledeck-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .25s ease;
}

.profiledeck-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.profiledeck-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.profiledeck-body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.profiledeck-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .55rem;
    color: var(--dark);
}

.profiledeck-desc {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--dark-secondary);
    margin-bottom: 1rem;
}

.profiledeck-cta {
    display: inline-block;
    padding: .65em 1.1em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
}

.profiledeck-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .matchsuite-heading {
        font-size: 1.3rem;
    }
    .profiledeck-thumb {
        height: 180px;
    }
    .profiledeck-name {
        font-size: 1.05rem;
    }
}
@media (max-width: 540px) {
  .matchsuite-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* DEFAULT/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* DEFAULT/blogbody1.css */
.content-block-review-xyz123 {
  width: 100%;
  max-width: 820px;
  margin: 0 auto var(--section-gap) auto;

  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 20px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
}


.image-wrapper-review-xyz123 {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper-review-xyz123 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper-review-xyz123:hover img {
  transform: scale(1.03);
}


.text-content-review-xyz123 {
  padding: var(--section-gap);
  color: var(--dark);
  font-size: var(--font-size-base);
  line-height: 1.7;
}


.text-content-review-xyz123 h2,
.text-content-review-xyz123 h3 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.text-content-review-xyz123 p {
  margin: 1rem 0;
}

.text-content-review-xyz123 ul,
.text-content-review-xyz123 ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
}

.text-content-review-xyz123 li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.text-content-review-xyz123 ol li {
  list-style: decimal;
}

.text-content-review-xyz123 a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.text-content-review-xyz123 a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.text-content-review-xyz123 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: var(--font-size-sm);
  box-shadow: 0 2px 6px var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.text-content-review-xyz123 th,
.text-content-review-xyz123 td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: left;
}

.text-content-review-xyz123 thead {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.text-content-review-xyz123 tbody tr:nth-child(odd) {
  background: rgba(0,0,0,0.02);
}


@media (max-width: 768px) {
  .content-block-review-xyz123 {
    gap: var(--page-gap-reduced);
  }
  .text-content-review-xyz123 {
    padding: 1.5rem;
  }
  .text-content-review-xyz123 h2 {
    font-size: var(--font-size-h3);
  }
}